Update Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
@@ -2,4 +2,5 @@ FROM python:3.12
|
|
2 |
WORKDIR /code
|
3 |
RUN pip install fastapi httpx pydantic uvicorn
|
4 |
COPY . .
|
|
|
5 |
CMD python /code/app.py
|
|
|
2 |
WORKDIR /code
|
3 |
RUN pip install fastapi httpx pydantic uvicorn
|
4 |
COPY . .
|
5 |
+
RUN chmod 777 /code
|
6 |
CMD python /code/app.py
|