Browse Source

-dockerfile python

main
SimonBurdy 5 years ago
committed by GitHub
parent
commit
6c4903fe23
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 11
      1_dockerfile/python/Dockerfile

11
1_dockerfile/python/Dockerfile

@ -0,0 +1,11 @@
FROM python:2.7
COPY app.py requirements.txt app/
WORKDIR /app
RUN pip install -r requirements.txt
EXPOSE 5000
CMD ["python", "app.py"]
Loading…
Cancel
Save