From af1e32ac246c516ca4d945cae9a61f0bdec99a3a Mon Sep 17 00:00:00 2001 From: Hannes Kuchelmeister Date: Tue, 7 Jun 2022 13:45:46 +0200 Subject: [PATCH] update the debian image to use debian stable-slim --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3fad1bc..617d5a2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ COPY . . RUN cd db && ./create_db.sh RUN cargo install --path . -FROM debian:bullseye-slim +FROM debian:stable-slim RUN apt-get update && apt-get install -y sqlite3 openssl ca-certificates && rm -rf /var/lib/apt/lists/* WORKDIR app COPY --from=builder /usr/local/cargo/bin/ics-proxy ./ics-proxy