FastAPI server, replaceable JSON config, tests, Dockerfile. Pairs with ATO via spec/interface.md contract. Co-authored-by: Cursor <cursoragent@cursor.com>
10 lines
332 B
Docker
10 lines
332 B
Docker
FROM python:3.12-slim
|
|
WORKDIR /app
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
COPY . .
|
|
RUN pytest -q
|
|
EXPOSE 8080
|
|
ENV SIM_CONFIG=/app/config/sim.default.json
|
|
ENV TRACK_CONFIG=/app/config/track.default.json
|
|
CMD ["uvicorn", "trainsim.app:create_app", "--factory", "--host", "0.0.0.0", "--port", "8080"]
|