Files
OutFleet/Dockerfile
Alexandr Bogomyakov 7b5f47fa64
Some checks failed
Docker hub build / docker (push) Has been cancelled
Update Dockerfile
2024-11-20 13:35:56 +02:00

12 lines
228 B
Docker

FROM python:3.12.3
WORKDIR /app
#COPY requirements.txt ./
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
RUN python manage.py collectstatic --noinput
CMD [ "python", "./manage.py", "runserver", "0.0.0.0:8000" ]