gnilets commited on
Commit
77e3d8b
·
verified ·
1 Parent(s): b71e69d

Create Dockerfile

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