my-django/Dockerfile
Kai 5d9073c19c
Some checks failed
test / build (push) Has been cancelled
test / deploy (push) Has been cancelled
test / release (push) Has been cancelled
first commit
2025-03-21 17:45:04 +08:00

12 lines
235 B
Docker

FROM python:3.11-slim
WORKDIR /opt/my-django
ADD requirements.txt requirements.txt
RUN pip install --upgrade pip && pip install -r requirements.txt --timeout=1000 -i https://mirrors.cloud.tencent.com/pypi/simple
ADD . .
EXPOSE 80