fix: set the debian version used to build the Docker image (#2386)
This avoid conflicting GLibc version between the build step and the distroless cc one.
This commit is contained in:
parent
974a05d7be
commit
623756e7e3
|
@ -1,4 +1,4 @@
|
||||||
FROM rust:slim AS builder
|
FROM rust:slim-bookworm AS builder
|
||||||
|
|
||||||
RUN apt-get update -y && \
|
RUN apt-get update -y && \
|
||||||
apt-get install -y make g++ libssl-dev && \
|
apt-get install -y make g++ libssl-dev && \
|
||||||
|
@ -10,6 +10,6 @@ COPY . .
|
||||||
RUN cargo build --release --target x86_64-unknown-linux-gnu
|
RUN cargo build --release --target x86_64-unknown-linux-gnu
|
||||||
|
|
||||||
|
|
||||||
FROM gcr.io/distroless/cc
|
FROM gcr.io/distroless/cc-debian12
|
||||||
COPY --from=builder /app/target/x86_64-unknown-linux-gnu/release/zola /bin/zola
|
COPY --from=builder /app/target/x86_64-unknown-linux-gnu/release/zola /bin/zola
|
||||||
ENTRYPOINT [ "/bin/zola" ]
|
ENTRYPOINT [ "/bin/zola" ]
|
||||||
|
|
Loading…
Reference in New Issue