Dockerfile
429 Bytes
# 使用方 Python 基础镜像作为基础
FROM python:3.7.4
# 设置工目录
WORKDIR /
RUN apt-get update && apt-get install -y libsndfile1 ffmpeg
# 将 requirements.txt 复到容器中
COPY requirements.txt .
# 安装赖包
RUN pip install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/
# 将整个项目复制到容器中
COPY . .
# 运行 Django 服务器
CMD python manage.py runserver 0.0.0.0:8000