mamweb/Dockerfile

11 lines
212 B
Text
Raw Normal View History

2024-11-12 20:15:09 +01:00
FROM python:3.11.10-bookworm
WORKDIR /usr/src/app
RUN pip install --upgrade pip
COPY ./requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["python3", "manage.py", "runserver", "0.0.0.0:8000"]