2026-03-04 22:01:58 +03:00
|
|
|
FROM python:3.12-slim
|
|
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
|
|
COPY requirements.txt .
|
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
|
|
|
|
|
|
COPY web/ ./web/
|
2026-03-06 12:26:41 +03:00
|
|
|
COPY alembic.ini .
|
|
|
|
|
COPY docker-entrypoint.sh .
|
|
|
|
|
RUN chmod +x docker-entrypoint.sh
|
2026-03-04 22:01:58 +03:00
|
|
|
|
2026-03-06 12:26:41 +03:00
|
|
|
CMD ["./docker-entrypoint.sh"]
|