fix outdated versions not allowing server to start (issue with GLIBC)

This commit is contained in:
2022-02-26 11:25:38 +01:00
parent 6bd3ef4537
commit 4a8f9c1ab8

View File

@@ -5,7 +5,7 @@ COPY . .
RUN cd db && ./create_db.sh RUN cd db && ./create_db.sh
RUN cargo install --path . 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/* RUN apt-get update && apt-get install -y sqlite3 openssl ca-certificates && rm -rf /var/lib/apt/lists/*
WORKDIR app WORKDIR app
COPY --from=builder /usr/local/cargo/bin/ics-proxy ./ics-proxy COPY --from=builder /usr/local/cargo/bin/ics-proxy ./ics-proxy