fix: switch to using debian base images
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
befb3780cc
commit
a536481248
1 changed files with 6 additions and 12 deletions
18
Dockerfile
18
Dockerfile
|
@ -1,28 +1,22 @@
|
|||
ARG GO_VERSION=1.17
|
||||
ARG DEBIAN_VERSION=11
|
||||
ARG DEBIAN_VERSION_NAME=bullseye
|
||||
|
||||
## Build stage ##
|
||||
FROM docker.io/library/golang:${GO_VERSION}-${DEBIAN_VERSION_NAME} AS builder
|
||||
|
||||
FROM golang as builder
|
||||
WORKDIR /build
|
||||
COPY go.mod go.sum ./
|
||||
RUN go mod download
|
||||
|
||||
COPY . .
|
||||
#RUN CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} go build -o rageshake
|
||||
RUN go build -o rageshake
|
||||
|
||||
## Runtime stage, debug variant ##
|
||||
FROM gcr.io/distroless/static-debian${DEBIAN_VERSION}:debug-nonroot AS debug
|
||||
FROM debian:bullseye as debug
|
||||
COPY --from=builder /build/rageshake /rageshake
|
||||
WORKDIR /
|
||||
EXPOSE 9110
|
||||
ENTRYPOINT ["/rageshake"]
|
||||
|
||||
## Runtime stage ##
|
||||
FROM gcr.io/distroless/static-debian${DEBIAN_VERSION}:nonroot
|
||||
COPY --from=builder /build/rageshake /rageshake
|
||||
FROM debian:bullseye as rageshake
|
||||
LABEL org.opencontainers.image.source https://git.batsense.net/mystiq/rageshake
|
||||
WORKDIR /
|
||||
COPY --from=builder /build/rageshake /bin/
|
||||
EXPOSE 9110
|
||||
ENTRYPOINT ["/rageshake"]
|
||||
ENTRYPOINT ["/bin/rageshake"]
|
||||
|
|
Reference in a new issue