Skip to content

Commit

Permalink
Changed Dockerfile to be compatible with Bookworm (#2)
Browse files Browse the repository at this point in the history
The latest TTS Service on Docker Hub gaves me GLIBC errors. Changing the bullseye to bookworm solves the issue for me.
LukeMathWalker/cargo-chef#188
  • Loading branch information
Maikel1990 authored Jan 3, 2024
1 parent d98d44e commit 604f080
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ COPY . .
RUN cargo build --release

# Now make the runtime container
FROM debian:bullseye-slim
FROM debian:bookworm-slim AS runtime

RUN apt-get update && apt-get upgrade -y && \
apt-get install -y openssl ca-certificates git subversion make autoconf automake libtool pkg-config g++ && \
Expand Down

0 comments on commit 604f080

Please sign in to comment.