22 lines
691 B
Docker
22 lines
691 B
Docker
FROM python:3.9
|
|
ENV TZ=Asia/Shanghai
|
|
RUN apt update
|
|
RUN apt install -y vim
|
|
RUN apt install -y libgl1-mesa-glx
|
|
COPY ./requirements.txt /requirements.txt
|
|
RUN pip install --upgrade pip
|
|
RUN pip install -r requirements.txt
|
|
RUN pip install gunicorn
|
|
RUN pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu118
|
|
RUN pip install mmcv==1.4.2 -f https://download.openmmlab.com/mmcv/dist/cu117/torch1.13/index.html
|
|
|
|
WORKDIR /app
|
|
COPY . .
|
|
ENV FLASK_APP=manage.py
|
|
LABEL maintainer="zchengrong@yeah.net" \
|
|
description="My Python 3.9 - trinity mixi " \
|
|
version="1.0" \
|
|
name="trinity_mixi"
|
|
|
|
|
|
CMD ["gunicorn", "-c", "gunicorn_config.py", "app.main:app"] |