Skip to content

Commit

Permalink
Switching debian buster to bullseye
Browse files Browse the repository at this point in the history
  • Loading branch information
mjovanc committed Dec 17, 2024
1 parent 5ee1214 commit f51f2a4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ COPY . .
RUN cargo build --release

# Use a minimal base image for the final stage
FROM debian:buster-slim
FROM debian:bullseye-slim

RUN apt-get update && apt install -y openssl
# Install OpenSSL
RUN apt-get update && apt-get install -y openssl && rm -rf /var/lib/apt/lists/*

# Set the working directory
WORKDIR /usr/src/app
Expand Down

0 comments on commit f51f2a4

Please sign in to comment.