File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
opik-sandbox-executor-python Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ RUN apk add --no-cache tini python3 py3-pip rust cargo
5
5
WORKDIR /opt/opik-python-backend
6
6
7
7
COPY requirements.txt .
8
- RUN pip install -r requirements.txt --break-system-packages
8
+ RUN pip install --no-cache-dir - r requirements.txt --break-system-packages
9
9
10
10
ENV PYTHON_CODE_EXECUTOR_ASSET_NAME="opik-sandbox-executor-python"
11
11
# Optionally copies the file. It's built ok without it, as it'll be pulled before running anyway.
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ FROM python:3.12.9-slim
3
3
WORKDIR /opt/opik-sandbox-executor-python
4
4
5
5
COPY requirements.txt .
6
- RUN pip install -r requirements.txt
6
+ RUN pip install --no-cache-dir - r requirements.txt
7
7
8
8
RUN chown -R 1001:1001 /opt/opik-sandbox-executor-python
9
9
USER 1001:1001
You can’t perform that action at this time.
0 commit comments