Skip to content

Commit

Permalink
docker: use bookworm for both build and runtime container (#248)
Browse files Browse the repository at this point in the history
  • Loading branch information
KisaragiEffective authored Jun 17, 2024
1 parent 6209623 commit 417cf68
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM rust:1.79.0-bullseye as Builder
FROM rust:1.79.0-bookworm as Builder

WORKDIR /root/app
COPY --chown=root:root . .

RUN cargo build --release --bin ichiyo_ai

FROM debian:bullseye-slim as Runner
FROM debian:bookworm-slim as Runner

COPY --from=Builder --chown=root:root /root/app/target/release/ichiyo_ai /usr/local/bin/ichiyo_ai

Expand Down

0 comments on commit 417cf68

Please sign in to comment.