This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# backend/Dockerfile | |
FROM python:3.11-slim | |
WORKDIR /app | |
RUN apt-get update && apt-get install -y build-essential libpq-dev gcc && rm -rf /var/lib/apt/lists/* | |
COPY backend/requirements.txt /app/requirements.txt | |
RUN pip install --no-cache-dir -r /app/requirements.txt |