correct some errors

This commit is contained in:
jeanGaston 2024-01-29 16:32:57 +01:00
parent afe0548c9a
commit ae8dc5d6ae
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ FROM python:3.8-slim
WORKDIR /app
# Copy the script1.py and any other necessary files
COPY Helloworld.py /app/
COPY ./Helloworld.py /app/
# Install any dependencies specific to script1.py
RUN pip install --no-cache-dir -r requirements.txt

View File

@ -5,7 +5,7 @@ FROM python:3.8-slim
WORKDIR /app
# Copy the script1.py and any other necessary files
COPY Helloworld.py /app/
COPY ./Helloworld.py /app/
# Install any dependencies specific to script1.py
RUN pip install --no-cache-dir -r requirements.txt