Django - Deployment and Production
Given this Dockerfile snippet:
What happens when you run this container?
FROM python:3.12-slim WORKDIR /app COPY . /app RUN pip install -r requirements.txt CMD ["python", "manage.py", "runserver", "0.0.0.0:8000"]
What happens when you run this container?
