Skip to content

Commit 3951581

Browse files
committed
Changed Dockerfile template.
Changed to use pip3.11 because this more accurately reflects the runtime environment.
1 parent 9926b5e commit 3951581

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/datacustomcode/templates/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ ENV ENVIRONMENT=Outside_DataCloud
66

77
# install from dev requirements.txt
88
COPY requirements-dev.txt ./requirements-dev.txt
9-
RUN pip3 install --no-cache-dir -r requirements-dev.txt
9+
RUN pip3.11 install --no-cache-dir -r requirements-dev.txt
1010

1111
# Install from requirements.txt:
1212
COPY requirements.txt ./requirements.txt
13-
RUN pip3 install --no-cache-dir -r requirements.txt
13+
RUN pip3.11 install --no-cache-dir -r requirements.txt
1414

1515
# Create workspace directory
1616
RUN mkdir /workspace

0 commit comments

Comments
 (0)