Files
hms-licht-ton/backend/Dockerfile
T

18 lines
380 B
Docker
Raw Normal View History

FROM python:3.12-slim
WORKDIR /app
# Install system dependencies for asyncpg
RUN apt-get update && apt-get install -y --no-install-recommends \
gcc libpq-dev && \
rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app/ ./app/
EXPOSE 8000
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]