10 lines
124 B
Docker
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"]
|