1
0
mirror of https://github.com/SourceFellows/gobuch.git synced 2025-06-08 19:46:05 +02:00
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"]