2020-11-22 19:07:37 +11:00

6 lines
88 B
Plaintext

FROM golang
RUN mkdir /app
WORKDIR /app
ADD . /app/
RUN go build .
ENTRYPOINT ./app