From f1b10a22f8f85f5e6e7d4f18f05203120a0482bb Mon Sep 17 00:00:00 2001 From: Jeong-Hee Kang Date: Sun, 18 Jun 2023 07:03:42 +0900 Subject: [PATCH] Docker container updates - use specific debian version (libssl1 vs libssl3) (#1630) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2e38b410..7aa2c4a5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # pip dependencies install stage -FROM python:3.10-slim as builder +FROM python:3.10-slim-bullseye as builder # See `cryptography` pin comment in requirements.txt ARG CRYPTOGRAPHY_DONT_BUILD_RUST=1 @@ -29,7 +29,7 @@ RUN pip install --target=/dependencies playwright~=1.27.1 \ || echo "WARN: Failed to install Playwright. The application can still run, but the Playwright option will be disabled." # Final image stage -FROM python:3.10-slim +FROM python:3.10-slim-bullseye RUN apt-get update && apt-get install -y --no-install-recommends \ libssl1.1 \