Skip to content

Commit 202fe30

Browse files
authored
Merge pull request #2 from ksuzy31-org/new
change base image
2 parents f9b97ba + 2f301ce commit 202fe30

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
FROM python:3.7-slim
2-
1+
FROM python:3.8.10
32
# Add requirements file in the container
43
COPY requirements.txt ./requirements.txt
54
RUN pip install -r requirements.txt
@@ -8,4 +7,4 @@ RUN pip install -r requirements.txt
87
COPY main.py ./main.py
98

109
# Define container entry point (could also work with CMD python main.py)
11-
ENTRYPOINT ["python", "main.py"]
10+
ENTRYPOINT ["python", "main.py"]

0 commit comments

Comments
 (0)