We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec4c087 commit 7fcb409Copy full SHA for 7fcb409
Dockerfile
@@ -3,7 +3,7 @@
3
# when building multiarch using buildx, then try this:
4
# https://github.com/docker/buildx/issues/495#issuecomment-761562905
5
6
-FROM python:3.8-slim-buster AS base
+FROM python:3.8-buster AS base
7
8
ENV LANG C.UTF-8
9
ENV LC_ALL C.UTF-8
@@ -41,8 +41,8 @@ WORKDIR /home/mqtt_io
41
42
COPY --from=requirements --chown=mqtt_io /home/mqtt_io/venv ./venv
43
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
+RUN venv/bin/python -m pip install --upgrade pip
+RUN venv/bin/pip install -r requirements.txt
46
47
COPY --chown=mqtt_io mqtt_io mqtt_io
48
0 commit comments