FinalCommander/Dockerfile
DataHoarder 569d295120
All checks were successful
continuous-integration/drone/push Build is passing
Update build commands
2022-01-18 19:56:05 +01:00

9 lines
167 B
Docker

FROM golang:1.18-rc-bullseye
COPY . /src
WORKDIR /src
RUN GOAMD64=v2 go build -v -o fcmm . && mv fcmm /usr/bin && rm -rf /src
WORKDIR /
ENTRYPOINT ["/usr/bin/fcmm"]