samples/2022/01/tornado_demo1/Dockerfile

7 lines
191 B
Docker
Raw Normal View History

2022-01-16 11:13:55 +00:00
FROM python:3.8-slim-buster
COPY ./src /app
COPY ./requirements.txt /app/requirements.txt
WORKDIR /app
RUN python3 -m pip install -r /app/requirements.txt
CMD [ "python3", "/app/server.py" ]