cherry_be/Dockerfile
2021-09-04 03:23:34 +00:00

10 lines
222 B
Docker

FROM python:3.7-alpine
COPY requirements.txt /app/requirements.txt
WORKDIR /app
RUN pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
COPY . /app
# CMD sh go.sh && python -i
CMD sleep 100000000