mirror of
https://git.kotyczka.ch/developers/django.git
synced 2025-04-06 07:45:08 +02:00
19 lines
506 B
Docker
Executable File
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"] |