Inital simple hand-made ver

This commit is contained in:
KenwoodFox
2025-12-03 12:47:17 -05:00
commit 20b5086800
14 changed files with 553 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM python:3.11-slim
WORKDIR /app
COPY . /app
RUN pip install --upgrade pip
RUN pip install --upgrade gunicorn
RUN pip install --no-cache-dir -r requirements.txt
CMD ["gunicorn", "seduttomachineworks_project.wsgi:application", "--bind", "0.0.0.0:8000"]