Initial commit – Update UI
This commit is contained in:
commit
029caa8565
5 changed files with 235 additions and 0 deletions
10
Dockerfile
Normal file
10
Dockerfile
Normal file
|
@ -0,0 +1,10 @@
|
|||
FROM python:3.11-slim
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
RUN pip install fastapi jinja2 uvicorn requests python-dateutil
|
||||
|
||||
COPY main.py .
|
||||
COPY reference_versions.json ./reference_versions.json
|
||||
|
||||
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8080"]
|
Loading…
Add table
Add a link
Reference in a new issue