Spaces:
Runtime error
Runtime error
Sébastien De Greef
commited on
Commit
·
dbc7d73
1
Parent(s):
f5447db
chore: Update Dockerfile to fix copying of source files and set permissions for start_chatbot.sh
Browse files- Dockerfile +5 -3
Dockerfile
CHANGED
@@ -63,6 +63,8 @@ RUN --mount=target=/root/on_startup.sh,source=on_startup.sh,readwrite bash /root
|
|
63 |
|
64 |
USER chatbot
|
65 |
|
66 |
-
COPY --chown=chatbot src
|
67 |
-
|
68 |
-
|
|
|
|
|
|
63 |
|
64 |
USER chatbot
|
65 |
|
66 |
+
COPY --chown=chatbot src src
|
67 |
+
RUN ls
|
68 |
+
COPY --chown=chatbot start_chatbot.sh start_chatbot.sh
|
69 |
+
RUN ls
|
70 |
+
RUN chmod +x start_chatbot.sh
|