Files
OutFleet/Dockerfile
Alexandr Bogomyakov 26a94d0e72
Some checks failed
Docker hub build / docker (push) Failing after 24s
Update Dockerfile
2025-03-17 15:00:52 +02:00

12 lines
230 B
Docker

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