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
Files changed (1) hide show
  1. 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
- RUN chmod +x $HOME/app/start_chatbot.sh
 
 
 
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