lavis/Dockerfile

13 lines
289 B
Docker

FROM python:3.8.13
WORKDIR /app
COPY . /app
RUN pip config set global.index-url https://pypi.mirrors.ustc.edu.cn/simple
#RUN apt-get update && apt-get install python3.8-dev
#RUN apt-get update && apt-get install python-dev
RUN pip install -r requirements.txt
CMD ["python", "app.py"]