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
Expand Up @@ -12,7 +12,7 @@ COPY ./backend /app
RUN cargo build --release

# Runtime stage
FROM debian:bookworm-slim AS run
FROM debian:trixie-slim AS run
RUN apt-get update && \
apt-get install -y ca-certificates && \
apt-get clean && \
Expand All @@ -22,4 +22,4 @@ COPY --from=build-frontend /app/dist /app/public
COPY --from=build-backend /app/target/release/pinging /app/pinging
USER nobody
EXPOSE 8000/tcp 8888/udp
ENTRYPOINT ["/app/pinging"]
ENTRYPOINT ["/app/pinging"]
Loading