mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
d8680367b0
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
22 lines
646 B
Docker
22 lines
646 B
Docker
FROM golang:1.22.4@sha256:a66eda637829ce891e9cf61ff1ee0edf544e1f6c5b0e666c7310dce231a66f28 as builder
|
|
|
|
# Download project root dependencies
|
|
WORKDIR /workspace
|
|
COPY go.mod go.mod
|
|
COPY go.sum go.sum
|
|
# cache deps before building and copying source so that we don't need to re-download as much
|
|
# and so that source changes don't invalidate our downloaded layer
|
|
RUN go mod download
|
|
|
|
COPY . .
|
|
|
|
# Build
|
|
WORKDIR /workspace/internal/api/versionsapi/cli
|
|
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o versionsapi .
|
|
|
|
FROM scratch as release
|
|
|
|
COPY --from=builder /workspace/internal/api/versionsapi/cli/versionsapi .
|
|
|
|
CMD ["/notIntendedToBeExecuted"]
|