From 4a8f9c1ab8d64a8d639036b0cce919df3fc0a687 Mon Sep 17 00:00:00 2001 From: Hannes Kuchelmeister Date: Sat, 26 Feb 2022 11:25:38 +0100 Subject: [PATCH] fix outdated versions not allowing server to start (issue with GLIBC) --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 7c59e5b..e936ab9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ COPY . . RUN cd db && ./create_db.sh RUN cargo install --path . -FROM debian:buster-slim +FROM debian:bullseye-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