Skip to content

Instantly share code, notes, and snippets.

@percybolmer
Last active February 2, 2021 19:40
Show Gist options
  • Save percybolmer/ffd9025b061e976ed5229374accdcdaa to your computer and use it in GitHub Desktop.
Save percybolmer/ffd9025b061e976ed5229374accdcdaa to your computer and use it in GitHub Desktop.
FROM golang:1.15
RUN mkdir /app
WORKDIR /app
COPY . .
RUN go mod init publisher
RUN go build -o publisher
CMD ["/app/publisher"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment