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

14
Dockerfile.python-alpine Normal file
View File

@@ -0,0 +1,14 @@
# Use the official Python image as the base image
FROM alpine:latest
# Install python
RUN apk add --no-cache python3
# Set the working directory
WORKDIR /usr/src/app
# Copy the hello_world.py script into the container
COPY hello_world-alpine.py .
# Run the script
CMD ["python3", "hello_world-alpine.py"]