again testing dockerfiles

This commit is contained in:
jeanGaston
2024-01-29 16:46:01 +01:00
parent ae8dc5d6ae
commit e6702d3b37
3 changed files with 4 additions and 4 deletions
+14
View File
@@ -0,0 +1,14 @@
# Use the official Python image as a base image
FROM python:3.8-slim
# Set the working directory in the container
WORKDIR /app
# Copy the script1.py and any other necessary files
COPY ./Helloworld.py /app/
# Install any dependencies specific to script1.py
RUN pip install --no-cache-dir -r requirements.txt
# Set the entry point
CMD ["python", "Helloworld.py"]