Files
AllMail/api/Dockerfile
Aditya Pulipaka 70ee32efdd
Some checks failed
Deploy to Server / deploy (push) Failing after 5s
beforeLocal
2026-05-05 00:47:39 +00:00

19 lines
336 B
Docker

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"]