Changed example number

This commit is contained in:
Joan
2023-08-05 18:23:39 +02:00
parent 6c461a5df3
commit 049763660f
5 changed files with 158 additions and 17 deletions

View File

@@ -1,4 +1,4 @@
FROM python:3.9
FROM python:3.7
# Adding trusting keys to apt for repositories
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
@@ -26,8 +26,9 @@ ENV DISPLAY=:99
RUN mkdir /app
ADD requirements.txt /app
ADD *.py /app/
RUN pip install -r /app/requirements.txt
ADD *.py /app/
WORKDIR /app