We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9926b5e commit 3951581Copy full SHA for 3951581
1 file changed
src/datacustomcode/templates/Dockerfile
@@ -6,11 +6,11 @@ ENV ENVIRONMENT=Outside_DataCloud
6
7
# install from dev requirements.txt
8
COPY requirements-dev.txt ./requirements-dev.txt
9
-RUN pip3 install --no-cache-dir -r requirements-dev.txt
+RUN pip3.11 install --no-cache-dir -r requirements-dev.txt
10
11
# Install from requirements.txt:
12
COPY requirements.txt ./requirements.txt
13
-RUN pip3 install --no-cache-dir -r requirements.txt
+RUN pip3.11 install --no-cache-dir -r requirements.txt
14
15
# Create workspace directory
16
RUN mkdir /workspace
0 commit comments