update dockerfile for new config

also fix glibc error
This commit is contained in:
minish 2023-12-08 14:20:35 -05:00
parent 661f2f14dd
commit 3513337ac7
Signed by: min
GPG Key ID: FEECFF24EF0CE9E9
1 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ COPY . .
RUN cargo install --path . RUN cargo install --path .
# runner # runner
FROM debian:bullseye-slim FROM debian:bookworm-slim
RUN apt-get update && rm -rf /var/lib/apt/lists/* RUN apt-get update && rm -rf /var/lib/apt/lists/*
@ -16,4 +16,4 @@ RUN useradd -m runner
USER runner USER runner
EXPOSE 8000 EXPOSE 8000
CMD [ "breeze" ] CMD [ "breeze", "--config", "/etc/breeze.toml" ]