6 lines
92 B
Docker
6 lines
92 B
Docker
FROM python
|
|
ADD . /code
|
|
WORKDIR /code
|
|
RUN pip install -r requirements.txt
|
|
CMD python app.py
|