first commit

This commit is contained in:
2024-07-27 22:24:07 +02:00
commit 08da1f6b10
7 changed files with 110 additions and 0 deletions

11
Dockerfile.python Normal file
View File

@@ -0,0 +1,11 @@
# Use the official Python image as the base image
FROM python:3.9.19
# Set the working directory
WORKDIR /usr/src/app
# Copy the hello_world.py script into the container
COPY hello_world.py .
# Run the script
CMD ["python3", "hello_world.py"]