summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOrhun Parmaksız <orhunparmaksiz@gmail.com>2022-12-03 00:00:27 +0300
committerOrhun Parmaksız <orhunparmaksiz@gmail.com>2022-12-03 00:00:27 +0300
commitdd32b387b28cb734643fcd7fef630a647884d6ed (patch)
treec51d7ceda1fda606344ba7eaa4b9813299af186c
parent465596c2cfd1889cf468fc219b033c39969a6cf6 (diff)
chore: Bump Debian distribution in Dockerfile
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 1e0e8cd..5af2e2c 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-FROM rust:1.65-slim-buster as builder
+FROM rust:1.65-slim-bullseye as builder
RUN apt-get update && \
apt-get install -y --no-install-recommends \
--allow-unauthenticated \
@@ -15,7 +15,7 @@ COPY . .
RUN cargo build --locked --release --verbose --bin gpg-tui
RUN mkdir -p build-out && cp target/release/gpg-tui build-out/
-FROM debian:buster-slim as runner
+FROM debian:bullseye-slim as runner
RUN apt-get update && \
apt-get install -y --no-install-recommends \
--allow-unauthenticated \