This repository has been archived on 2021-10-15. You can view files and clone it, but cannot push or open issues or pull requests.
2020-coding-projects/uno/server/Dockerfile
2020-05-06 17:26:09 +02:00

10 lines
131 B
Docker

FROM golang
WORKDIR /app/server
COPY . .
RUN go mod download
RUN go build -o server
ENTRYPOINT ["./server"]
EXPOSE 8000