getapi commited on
Commit
c11e982
1 Parent(s): 41eb20c

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -0
Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM python:3.12
2
+ WORKDIR /code
3
+ RUN pip install fastapi httpx pydantic uvicorn
4
+ COPY . .
5
+ CMD python /code/app.py