Files
stork/Dockerfile
T
ilia b88791a0b7
CI / python-ci (push) Successful in 1m39s
CI / secret-scan (push) Successful in 32s
Add Stork family name board MVP with invite auth and votes.
Includes multilingual etymology fields, seed data for starter names, and CI-ready Python project layout.
2026-08-06 16:43:06 -04:00

13 lines
292 B
Docker

FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY stork /app/stork
COPY static /app/static
ENV STORK_DATA=/data
ENV STORK_COOKIE_SECURE=true
EXPOSE 8094
CMD ["uvicorn", "stork.app:app", "--host", "0.0.0.0", "--port", "8094"]