Skip to content

Instantly share code, notes, and snippets.

@percybolmer
Last active September 18, 2021 05:56
Show Gist options
  • Save percybolmer/fd1c7fb93c93412572dca5f6aa7660d0 to your computer and use it in GitHub Desktop.
Save percybolmer/fd1c7fb93c93412572dca5f6aa7660d0 to your computer and use it in GitHub Desktop.
An example DockerFile
FROM golang:1.5
LABEL maintainer="PercyBolmer@medium"
RUN mkdir /app
COPY main.go /app
WORKDIR /app
RUN go build -o helloer .
CMD [ "/app/helloer" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment