broken bad code lole

This commit is contained in:
2024-03-03 23:01:01 -05:00
parent 91d55efd20
commit c16bbb5275
29 changed files with 538 additions and 154 deletions

View File

@@ -1,3 +1,4 @@
# Use an official Python runtime as a base image
FROM python:3.11
# Set environment variables
@@ -15,4 +16,5 @@ RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 8000
# Run python manage.py runserver 0.0.0.0:8000 when the container launches
CMD ["python", "main.py"]
CMD ["python", "manage.py", "runserver", "0.0.0.0:8000"]