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")