-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Dockerfile and add Github Action for building and pushing the ima…
…ge to DockerHub
- Loading branch information
Showing
2 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM golang:1.22.2-alpine | ||
|
||
# Set maintainer label: maintainer=[YOUR-EMAIL] | ||
LABEL maintainer="[email protected]" | ||
|
||
# Set working directory: `/src` | ||
WORKDIR /src | ||
|
||
# Copy local file `main.go` to the working directory | ||
COPY . . | ||
|
||
# List items in the working directory (ls) | ||
RUN ls | ||
|
||
# Build the GO app as myapp binary and move it to /usr/ | ||
RUN go build -o /usr/myapp | ||
|
||
#Expose port 8888 | ||
EXPOSE 8888 | ||
|
||
# Run the service myapp when a container of this image is launched | ||
CMD ["/usr/myapp"] |