weather-api/Dockerfile
2021-03-17 19:14:27 +01:00

13 lines
No EOL
143 B
Docker

FROM golang:1.16
RUN mkdir -p /weather-api
WORKDIR /weather-api
ADD . /weather-api
RUN go build ./main.go
EXPOSE 10000
CMD ["./main"]