Skip to content

Instantly share code, notes, and snippets.

@theothermutahhir
Created March 4, 2022 07:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theothermutahhir/5b8e6ce1d6b7d35821c4aabe3e6c4b4f to your computer and use it in GitHub Desktop.
Save theothermutahhir/5b8e6ce1d6b7d35821c4aabe3e6c4b4f to your computer and use it in GitHub Desktop.
Reread.to Server Development Dockerfile
FROM golang:1.17-alpine
WORKDIR /server
COPY . ./
RUN go build -o build/reread main.go
EXPOSE 1323
CMD [ "build/reread" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment