update the debian image to use debian stable-slim

This commit is contained in:
2022-06-07 13:45:46 +02:00
parent 129481840f
commit af1e32ac24

View File

@@ -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