1
0
mirror of https://github.com/SourceFellows/gobuch.git synced 2025-05-10 14:48:35 +02:00
2020-08-21 06:26:40 +02:00

9 lines
147 B
Docker

from golang:latest
RUN mkdir /application
ADD . /application
WORKDIR /application
RUN go build -o application .
CMD ["/application/application"]