[+] Dockerize

This commit is contained in:
2024-12-17 01:07:23 -05:00
parent cd97f60b0e
commit 995025286b
5 changed files with 37 additions and 38 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM python:3.13-slim
# Install dependencies: Fastapi and uvicorn
RUN pip install fastapi uvicorn
# Copy ./server to /app
COPY ./server /app
WORKDIR /app
# Run the server
CMD ["python", "host.py"]