Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
@@ -27,8 +27,10 @@ RUN apt-get update && apt-get install -y python3
|
|
27 |
|
28 |
WORKDIR /app
|
29 |
|
30 |
-
|
31 |
COPY . /app
|
|
|
|
|
32 |
|
33 |
ENTRYPOINT ["bash","./start.sh"]
|
34 |
|
|
|
27 |
|
28 |
WORKDIR /app
|
29 |
|
30 |
+
|
31 |
COPY . /app
|
32 |
+
RUN chmod 777 /
|
33 |
+
RUN chmod 777 /app
|
34 |
|
35 |
ENTRYPOINT ["bash","./start.sh"]
|
36 |
|