matteo-the-prestige/Dockerfile
Dillon Lareau d369639fd2 typo
2021-01-01 14:24:34 -05:00

10 lines
124 B
Docker

FROM python:3.8
EXPOSE 5000
WORKDIR /app
COPY . ./
RUN pip install -r requirements.txt
CMD ["python", "the_prestige.py"]