1
0
mirror of https://github.com/SourceFellows/gobuch.git synced 2025-04-15 23:31:16 +02:00
2020-08-21 06:26:40 +02:00

7 lines
74 B
Docker

FROM golang
WORKDIR /go/src/app
COPY *.go .
RUN go install .
CMD ["app"]