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