Update DOCKERFILE

This commit is contained in:
jeanGaston 2024-01-30 09:34:22 +01:00
parent dd65b061bb
commit 438f21e035

View File

@ -11,7 +11,7 @@ COPY ./Helloworld.py /app/
EXPOSE 5000
# Install any dependencies
RUN pip install --no-cache-dir -r flask
RUN pip install --no-cache-dir flask
# Set the entry point
CMD ["python", "Helloworld.py"]