Skip to content

Commit 7fcb409

Browse files
authored
Revert "docker: use 3.8-slim-buster (#342)" (#351)
This reverts commit fe3a537.
1 parent ec4c087 commit 7fcb409

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# when building multiarch using buildx, then try this:
44
# https://github.com/docker/buildx/issues/495#issuecomment-761562905
55

6-
FROM python:3.8-slim-buster AS base
6+
FROM python:3.8-buster AS base
77

88
ENV LANG C.UTF-8
99
ENV LC_ALL C.UTF-8
@@ -41,8 +41,8 @@ WORKDIR /home/mqtt_io
4141

4242
COPY --from=requirements --chown=mqtt_io /home/mqtt_io/venv ./venv
4343
COPY --from=requirements /requirements.txt ./
44-
RUN venv/bin/python -m pip install --no-cache-dir --upgrade pip
45-
RUN venv/bin/pip install --no-cache-dir -r requirements.txt
44+
RUN venv/bin/python -m pip install --upgrade pip
45+
RUN venv/bin/pip install -r requirements.txt
4646

4747
COPY --chown=mqtt_io mqtt_io mqtt_io
4848

0 commit comments

Comments
 (0)