OrbitalBeat/Dockerfile
DataHoarder 0c4bd412c9
All checks were successful
continuous-integration/drone/push Build is passing
Add Version entry to stats
2022-07-20 19:55:20 +02:00

10 lines
220 B
Docker

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