Skip to content

Commit

Permalink
Revert "docker: use 3.8-slim-buster (#342)" (#351)
Browse files Browse the repository at this point in the history
This reverts commit fe3a537.
  • Loading branch information
BenjiU committed Feb 27, 2024
1 parent ec4c087 commit 7fcb409
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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

Expand Down

0 comments on commit 7fcb409

Please sign in to comment.