jurmy24 commited on
Commit
ceb1014
·
1 Parent(s): c83b086
Files changed (1) hide show
  1. Dockerfile +4 -1
Dockerfile CHANGED
@@ -19,9 +19,12 @@ COPY --chown=user viewer/package*.json ./
19
  # Install dependencies
20
  RUN npm install
21
 
22
- # Copy the rest of the application
23
  COPY --chown=user viewer/ .
24
 
 
 
 
25
  # Build the application
26
  RUN npm run build
27
 
 
19
  # Install dependencies
20
  RUN npm install
21
 
22
+ # Copy the entire viewer directory
23
  COPY --chown=user viewer/ .
24
 
25
+ # Ensure proper file permissions
26
+ RUN chmod -R 755 .
27
+
28
  # Build the application
29
  RUN npm run build
30