Initial commit: Cardano chain data REST API

This commit is contained in:
Sulkta 2026-03-18 11:43:46 -07:00
commit 6f709423d1
5 changed files with 1043 additions and 0 deletions

6
Dockerfile Normal file
View file

@ -0,0 +1,6 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8765", "--workers", "2"]