From ad07b5ce9eb76a488e142acd45c3919926c124a5 Mon Sep 17 00:00:00 2001 From: Aroy-Art Date: Wed, 2 Apr 2025 13:45:18 +0200 Subject: [PATCH] Add: Dockerfile for backend --- backend/.dockerignore | 14 ++++++++++++++ backend/Dockerfile | 31 +++++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+) create mode 100644 backend/.dockerignore create mode 100644 backend/Dockerfile diff --git a/backend/.dockerignore b/backend/.dockerignore new file mode 100644 index 0000000..bea3e72 --- /dev/null +++ b/backend/.dockerignore @@ -0,0 +1,14 @@ +# Text/doc files +*.md +*.txt +*.log + +# Git +.git/ +.gitignore + +# Folders +media/ + +# Allow python dependencie list +!requirements.txt diff --git a/backend/Dockerfile b/backend/Dockerfile new file mode 100644 index 0000000..95b0364 --- /dev/null +++ b/backend/Dockerfile @@ -0,0 +1,31 @@ +# ./backend/Dockerfile + +# Use an official Python runtime as a parent image +FROM python:3.12-slim + +# Set environment variables +ENV PYTHONDONTWRITEBYTECODE 1 +ENV PYTHONUNBUFFERED 1 + +# Set work directory +WORKDIR /app + +# Install Python dependencies +# Copy only requirements first to leverage Docker cache +COPY requirements.txt ./ +RUN pip install --no-cache-dir -r requirements.txt + +# Copy the entrypoint script first +COPY ./entrypoint.sh /app/entrypoint.sh +# Ensure it's executable inside the container too +RUN chmod +x /app/entrypoint.sh + +# Copy the rest of the backend source code +COPY . . + +# Set the entrypoint script +ENTRYPOINT ["/app/entrypoint.sh"] + +# Set the default command that the entrypoint will execute if none is provided by compose +# This is useful if you run the image directly without compose sometimes +CMD ["python", "manage.py", "runserver", "0.0.0.0:8080"]