This repository has been archived on 2025-08-29. You can view files and clone it, but cannot push or open issues or pull requests.
don_confiao/django.Dockerfile

9 lines
172 B
Docker

from python:3.12-slim
WORKDIR /app/
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "manage.py", "runserver", "0.0.0.0:9090"]