Includes multilingual etymology fields, seed data for starter names, and CI-ready Python project layout.
13 lines
292 B
Docker
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"]
|