Skip to content

Commit 2fac4d4

Browse files
committed
replace python with python3 in docker file
1 parent 18e9423 commit 2fac4d4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ COPY entrypoint.py /entrypoint.py
1616
COPY requirements.txt /requirements.txt
1717
COPY ai_tutor.py /ai_tutor.py
1818

19-
RUN python -m pip install --upgrade pip
20-
RUN python -m pip install -r /requirements.txt
19+
RUN python3 -m pip install --upgrade pip
20+
RUN python3 -m pip install -r /requirements.txt
2121

2222
ENTRYPOINT ["/entrypoint.py"]

0 commit comments

Comments
 (0)