still some stupid errors

This commit is contained in:
jeanGaston 2024-01-29 16:57:33 +01:00
parent e6702d3b37
commit 543ed585fc
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ WORKDIR /app
COPY ./Helloworld.py /app/ COPY ./Helloworld.py /app/
# Install any dependencies specific to script1.py # Install any dependencies specific to script1.py
RUN pip install --no-cache-dir -r requirements.txt RUN pip install --no-cache-dir -r ./requirements.txt
# Set the entry point # Set the entry point
CMD ["python", "Helloworld.py"] CMD ["python", "Helloworld.py"]

View File

@ -8,7 +8,7 @@ WORKDIR /app
COPY ./Helloworld.py /app/ COPY ./Helloworld.py /app/
# Install any dependencies specific to script1.py # Install any dependencies specific to script1.py
RUN pip install --no-cache-dir -r requirements.txt RUN pip install --no-cache-dir -r ./requirements.txt
# Set the entry point # Set the entry point
CMD ["python", "Helloworld.py"] CMD ["python", "Helloworld.py"]