run-hello-world / Dockerfile
qgallouedec's picture
qgallouedec HF staff
Create Dockerfile
b859098 verified
raw
history blame contribute delete
176 Bytes
# Use a lightweight Python image as the base
FROM python:3.11-slim
# Set the working directory inside the container
WORKDIR /app
# Copy all files to the container
COPY . /app