vumichien commited on
Commit
23f6c76
1 Parent(s): 02d0094

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -15,5 +15,8 @@ COPY . .
15
  # Expose the port the app runs on
16
  EXPOSE 5000
17
 
 
 
 
18
  # Command to run the application
19
  CMD [ "npm", "start" ]
 
15
  # Expose the port the app runs on
16
  EXPOSE 5000
17
 
18
+ # Change permissions for the 'public' directory to allow write access
19
+ RUN chmod -R 777 /usr/src/app/public
20
+
21
  # Command to run the application
22
  CMD [ "npm", "start" ]