zkt21/z2/web/Dockerfile

11 lines
181 B
Docker
Raw Normal View History

2021-04-18 11:21:46 +00:00
FROM python:3.7-slim
RUN python -m pip install --upgrade pip
WORKDIR /usr/src/app
COPY requirements.txt requirements.txt
RUN python -m pip install -r requirements.txt
COPY . .