Skip to content

Commit eff6ae6

Browse files
Update Dockerfile to Python 3.10 for elementary-data 0.22+ compatibility
elementary-data 0.22.0 dropped Python 3.9 support, causing pip install to fail inside the action's Docker container. Update base image from python:3.9.17 to python:3.10.17. Co-Authored-By: Itamar Hartstein <haritamar@gmail.com>
1 parent f764b45 commit eff6ae6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.9.17
1+
FROM python:3.10.17
22

33
COPY requirements.txt /requirements.txt
44
RUN pip install --no-cache-dir -r /requirements.txt

0 commit comments

Comments
 (0)