mirror of
https://github.com/getzola/zola
synced 2024-11-10 06:14:19 +00:00
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 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
FROM rust:slim AS builder
|
||||
FROM rust:slim-bookworm AS builder
|
||||
|
||||
RUN apt-get update -y && \
|
||||
apt-get install -y make g++ libssl-dev && \
|
||||
|
@ -10,6 +10,6 @@ COPY . .
|
|||
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
|
||||
ENTRYPOINT [ "/bin/zola" ]
|
||||
|
|
Loading…
Reference in a new issue