This commit is contained in:
2026-06-24 16:52:08 +02:00
commit 5abeb4fd48
53 changed files with 276551 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
FROM python:3.13.0-bookworm
WORKDIR /usr/src/app
COPY . .
COPY .env.production .env
RUN pip install -r requirements.txt
EXPOSE 9000
ENV DJANGO_ENV=production
CMD ["python", "manage.py", "runserver", "0.0.0.0:9000", "--noreload"]