6 lines
102 B
Text
6 lines
102 B
Text
|
FROM python:3
|
||
|
WORKDIR /app
|
||
|
ADD . /app
|
||
|
RUN pip install -r requirements.txt
|
||
|
CMD ["python", "wizard.py"]
|