From 29efa005328b9b865370354a695d4b1c5a903ed8 Mon Sep 17 00:00:00 2001 From: Pierre-arthur Date: Thu, 6 Mar 2025 18:24:12 +0100 Subject: [PATCH] test --- DockerFile | 7 +++++++ app.py | 1 + 2 files changed, 8 insertions(+) create mode 100644 DockerFile create mode 100644 app.py diff --git a/DockerFile b/DockerFile new file mode 100644 index 0000000..24d63df --- /dev/null +++ b/DockerFile @@ -0,0 +1,7 @@ +FROM python:3.9-slim + +WORKDIR /app + +COPY . /app + +CMD ["python", "app.py"] diff --git a/app.py b/app.py new file mode 100644 index 0000000..aaf4f54 --- /dev/null +++ b/app.py @@ -0,0 +1 @@ +print("PLOP")