Files
OutFleet/Dockerfile

12 lines
228 B
Docker
Raw Normal View History

2024-11-20 13:35:56 +02:00
FROM python:3.12.3
2023-09-25 23:48:25 +03:00
WORKDIR /app
2024-10-20 22:43:31 +00:00
#COPY requirements.txt ./
COPY . .
2023-09-25 23:48:25 +03:00
RUN pip install --no-cache-dir -r requirements.txt
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" ]