Kano001 commited on
Commit
320d6fe
1 Parent(s): 3ffd178

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -13,6 +13,9 @@ RUN npm install --save express ws
13
  # Copy the rest of the application files
14
  COPY . .
15
 
 
 
 
16
  # Expose the WebSocket port
17
  EXPOSE 7860
18
 
 
13
  # Copy the rest of the application files
14
  COPY . .
15
 
16
+ # Set permissions for the working directory
17
+ RUN chmod -R 777 /usr/src/app
18
+
19
  # Expose the WebSocket port
20
  EXPOSE 7860
21