django2/Dockerfile
2024-02-03 12:14:35 +01:00

19 lines
506 B
Docker
Executable File

# Dockerfile
# The first instruction is what image we want to base our container on
# We Use an official Python runtime as a parent image
FROM python:3.11-bookworm
# Allows docker to cache installed dependencies between builds
COPY requirements.txt requirements.txt
RUN pip install --no-cache-dir -r requirements.txt
# Mounts the application code to the image
COPY ./demo /app
WORKDIR /app
EXPOSE 8000
# runs the production server
ENTRYPOINT ["python3", "manage.py"]
CMD ["runserver", "0.0.0.0:8000"]