Spaces:
Running
Running
Create Dockerfile
Browse files- 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"]
|