Melora Hugues
4507728dae
All checks were successful
continuous-integration/drone/push Build is passing
16 lines
472 B
Docker
16 lines
472 B
Docker
FROM --platform=$TARGETPLATFORM golang:1.20 AS builder
|
|
ARG TARGETPLATFORM
|
|
ARG BUILDPLATFORM
|
|
WORKDIR /go/src/git.faercol.me/polyculeconnect
|
|
COPY polyculeconnect ./
|
|
RUN CGO_ENABLED=0 make build
|
|
|
|
# Replace with from scratch later on
|
|
FROM --platform=$TARGETPLATFORM alpine:latest
|
|
WORKDIR /root
|
|
COPY --from=builder go/src/git.faercol.me/polyculeconnect/build/polyculeconnect ./
|
|
|
|
VOLUME [ "/config" ]
|
|
|
|
ENTRYPOINT [ "./polyculeconnect" ]
|
|
CMD [ "-config", "/config/config.json" ]
|