From bdabd88585fd370d3a0d181153f62960aaafabb2 Mon Sep 17 00:00:00 2001 From: Anatole-EES Date: Mon, 4 Oct 2021 11:08:21 +0200 Subject: [PATCH] feat: exercice python --- 1_dockerfile/python/Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/1_dockerfile/python/Dockerfile b/1_dockerfile/python/Dockerfile index e69de29..cf3dc89 100644 --- a/1_dockerfile/python/Dockerfile +++ b/1_dockerfile/python/Dockerfile @@ -0,0 +1,6 @@ +FROM python:2.7 + +COPY . /app +RUN cd /app && pip install -r requirements.txt + +CMD ["python", "/app/app.py"] \ No newline at end of file