Files
regwatch-backend/Dockerfile
T
neckfireandClaude Opus 4.8 3d007c7013
Build & Deploy / build (push) Successful in 23s
RegWatch backend : FastAPI + Postgres partagé + Docker/CI homelab
- SECRET_KEY et DATABASE_URL externalisés (Vault -> env), plus de secret en dur
- SQLite -> postgres-shared (psycopg2), schéma créé au boot (entrypoint.sh)
- Dockerfile + docker-compose (Watchtower) + .gitea/workflows/build.yml

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-24 18:43:17 +02:00

14 lines
290 B
Docker

FROM python:3.12-slim
WORKDIR /app
# Dépendances Python (wheels : psycopg2-binary, argon2-cffi, cryptography -> pas besoin de toolchain).
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN chmod +x entrypoint.sh
EXPOSE 8000
CMD ["./entrypoint.sh"]