gnilets commited on
Commit
c6acc08
·
verified ·
1 Parent(s): ce42a46

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -0
Dockerfile ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ FROM python:3.12
2
+ WORKDIR /app
3
+ RUN pip install anyio fastapi httpx uvicorn
4
+ COPY . /app
5
+ RUN chmod 777 /app && chmod 777 /app/*
6
+ CMD ["python", "/app/app.py"]