(add): Some deployment files

This commit is contained in:
2026-07-25 15:17:02 -04:00
parent 1e6b7787b3
commit 25f97c5884
10 changed files with 41 additions and 2 deletions
+9
View File
@@ -0,0 +1,9 @@
FROM python:3-slim
WORKDIR /app
COPY app/requirements.txt .
RUN pip install -r requirements.txt
COPY app/. .
RUN mkdir -p /data
ENV TAM_DATA_DIR=/data
ENV NODE_TLS_REJECT_UNAUTHORIZED=0
CMD ["fastapi", "run", "--port=8000"]