Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -7,7 +7,7 @@ FROM python:3.10-slim
|
|
| 7 |
#WORKDIR /usr/src/app
|
| 8 |
#Copy the rest of your app's code into the container
|
| 9 |
WORKDIR /code
|
| 10 |
-
|
| 11 |
COPY ./requirements.txt /code/requirements.txt
|
| 12 |
|
| 13 |
|
|
|
|
| 7 |
#WORKDIR /usr/src/app
|
| 8 |
#Copy the rest of your app's code into the container
|
| 9 |
WORKDIR /code
|
| 10 |
+
RUN chmod -R 755 /code
|
| 11 |
COPY ./requirements.txt /code/requirements.txt
|
| 12 |
|
| 13 |
|