Skip to content

Commit

Permalink
Pin python version to 3.10 in docker files
Browse files Browse the repository at this point in the history
  • Loading branch information
axdanbol committed Oct 20, 2023
1 parent 74186a9 commit 4a10afd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion containers/celltypist/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3
FROM python:3.10

COPY context/requirements-freeze.txt .
RUN pip install -r requirements-freeze.txt
Expand Down
2 changes: 1 addition & 1 deletion containers/extract-summary/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3
FROM python:3.10

COPY context/requirements-freeze.txt .
RUN pip install -r requirements-freeze.txt
Expand Down
2 changes: 1 addition & 1 deletion containers/preprocess/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3
FROM python:3.10

COPY context/requirements-freeze.txt .
RUN pip install -r requirements-freeze.txt
Expand Down

0 comments on commit 4a10afd

Please sign in to comment.