mebubo commited on
Commit
06f6fdf
·
1 Parent(s): 777b898

Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +9 -0
Dockerfile ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ FROM ghcr.io/astral-sh/uv:python3.12-bookworm-slim
2
+
3
+ WORKDIR /app
4
+
5
+ COPY . /app
6
+
7
+ RUN uv sync
8
+
9
+ CMD [".venv/bin/fastapi", "run", "main.py"]