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 528d99e commit f2b8a55Copy full SHA for f2b8a55
tests/slo/Dockerfile
@@ -1,7 +1,9 @@
1
-FROM python:3.8
+FROM python:3.8-slim
2
COPY . /src
3
WORKDIR /src
4
-RUN python -m pip install --upgrade pip && python -m pip install -e . && python -m pip install -r tests/slo/requirements.txt
+RUN python -m pip install --no-cache-dir --upgrade pip && \
5
+ python -m pip install --no-cache-dir -e . && \
6
+ python -m pip install --no-cache-dir -r tests/slo/requirements.txt
7
WORKDIR tests/slo
8
ARG SDK_SERVICE
9
ENV SDK_SERVICE=$SDK_SERVICE
0 commit comments