Files
OutFleet/Dockerfile

12 lines
257 B
Docker
Raw Normal View History

2025-03-17 15:03:39 +02:00
FROM python:3-slim
2023-09-25 23:48:25 +03:00
WORKDIR /app
2025-03-13 01:43:33 +02:00
COPY ./requirements.txt .
2025-03-17 15:04:59 +02:00
RUN apk update && apk add git && pip install --no-cache-dir -r requirements.txt
2025-03-13 01:43:33 +02:00
COPY . .
2024-10-20 22:43:31 +00:00
RUN python manage.py collectstatic --noinput
2023-09-25 23:48:25 +03:00
2024-10-20 21:57:12 +00:00
CMD [ "python", "./manage.py", "runserver", "0.0.0.0:8000" ]