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.
2 parents 4877cc8 + f2b8a55 commit 3630931Copy full SHA for 3630931
.dockerignore
@@ -0,0 +1,7 @@
1
+*
2
+!tests/slo
3
+!ydb/
4
+!README.md
5
+!requirements.txt
6
+!pyproject.toml
7
+!setup.py
tests/slo/Dockerfile
@@ -1,7 +1,9 @@
-FROM python:3.8
+FROM python:3.8-slim
COPY . /src
WORKDIR /src
-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 && \
+ python -m pip install --no-cache-dir -e . && \
+ python -m pip install --no-cache-dir -r tests/slo/requirements.txt
WORKDIR tests/slo
8
ARG SDK_SERVICE
9
ENV SDK_SERVICE=$SDK_SERVICE
0 commit comments