Files
AllMail/api/Dockerfile

19 lines
336 B
Docker
Raw Permalink Normal View History

2026-05-05 00:47:39 +00:00
FROM python:3.11-slim
WORKDIR /app
# Install system dependencies for building psycopg2 and others
RUN apt-get update && apt-get install -y \
gcc \
libpq-dev \
&& rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN chmod +x run.sh
ENTRYPOINT ["./run.sh"]