OpenEnvHackathon / Dockerfile
TheAllanB's picture
Add interactive frontend: radar demo + live API + results dashboard
2c80dff
Raw
History Blame Contribute Delete
255 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY src/ src/
COPY tests/ tests/
COPY static/ static/
EXPOSE 7860
CMD ["uvicorn", "src.server:app", "--host", "0.0.0.0", "--port", "7860"]