From 7fcb4093fba97bef543f2da6a6e22355c490a496 Mon Sep 17 00:00:00 2001 From: Benji <46675043+BenjiU@users.noreply.github.com> Date: Tue, 27 Feb 2024 20:06:36 +0100 Subject: [PATCH] Revert "docker: use 3.8-slim-buster (#342)" (#351) This reverts commit fe3a5370026a3b1378aed092d99ab1c528205596. --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 34169b69..aa53a1b5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ # when building multiarch using buildx, then try this: # https://github.com/docker/buildx/issues/495#issuecomment-761562905 -FROM python:3.8-slim-buster AS base +FROM python:3.8-buster AS base ENV LANG C.UTF-8 ENV LC_ALL C.UTF-8 @@ -41,8 +41,8 @@ WORKDIR /home/mqtt_io COPY --from=requirements --chown=mqtt_io /home/mqtt_io/venv ./venv COPY --from=requirements /requirements.txt ./ -RUN venv/bin/python -m pip install --no-cache-dir --upgrade pip -RUN venv/bin/pip install --no-cache-dir -r requirements.txt +RUN venv/bin/python -m pip install --upgrade pip +RUN venv/bin/pip install -r requirements.txt COPY --chown=mqtt_io mqtt_io mqtt_io