16 lines
255 B
Docker
16 lines
255 B
Docker
|
|
FROM python:3.13-bookworm
|
|
|
|
RUN useradd -m django
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip install -r requirements.txt
|
|
EXPOSE 8000
|
|
COPY --chown=django . .
|
|
|
|
USER django:django
|
|
|
|
CMD ["python", "manage.py", "runserver" , "0.0.0.0:8000"]
|