10 lines
212 B
Docker
10 lines
212 B
Docker
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"]
|