gobuch/microservices/container/Dockerfile
2020-08-21 06:26:40 +02:00

7 lines
99 B
Docker

FROM golang:latest
COPY main.go /app/main.go
WORKDIR /app
RUN go build main.go
CMD [ "/app/main"]