matteo-the-prestige/Dockerfile

10 lines
124 B
Docker
Raw Normal View History

2021-01-01 19:23:18 +00:00
FROM python:3.8
EXPOSE 5000
WORKDIR /app
COPY . ./
RUN pip install -r requirements.txt
2021-01-01 19:24:34 +00:00
CMD ["python", "the_prestige.py"]