Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:slim-buster as build
FROM rust:bookworm as build

WORKDIR /app

Expand All @@ -10,7 +10,7 @@ RUN apt-get install libssl-dev pkg-config -y
RUN cargo build --release

# Copy the binary into a new container for a smaller docker image
FROM debian:buster-slim
FROM debian:bookworm

WORKDIR /etc/lust

Expand Down
Loading