bstein-dev-home/Dockerfile.backend

19 lines
413 B
Docker
Raw Normal View History

2026-01-22 22:39:32 -03:00
FROM registry.bstein.dev/bstein/python:3.12-slim
2025-12-18 01:13:04 -03:00
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1
WORKDIR /app
RUN apt-get update && \
apt-get install -y --no-install-recommends curl ca-certificates && \
rm -rf /var/lib/apt/lists/*
COPY backend/requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY backend/ .
EXPOSE 8080
CMD ["gunicorn", "-b", "0.0.0.0:8080", "app:app"]