From d2a45b29aa9598a0d67b9ee1e7dbd42819bf7e2d Mon Sep 17 00:00:00 2001 From: mmohamedELsayed-ai Date: Mon, 29 Dec 2025 11:14:22 +0200 Subject: [PATCH] Create Dockerfile --- Dockerfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c6dc225 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,14 @@ +# Use the official Python base image +FROM python:3.9-slim + +# Set the working directory +WORKDIR /app + +# Copy the Python script into the container +COPY hello.py . + +# Expose port 5000 for the Flask app +EXPOSE 5000 + +# Run the Python script +CMD ["python", "hello.py"]