Mohammed Foud commited on
Commit
8511ad1
·
1 Parent(s): 80d4bc1
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -19,6 +19,9 @@ COPY . .
19
  # Build the TypeScript project
20
  RUN pnpm run build
21
 
 
 
 
22
  # Expose the port your app runs on
23
  EXPOSE 7860
24
 
 
19
  # Build the TypeScript project
20
  RUN pnpm run build
21
 
22
+ # Create writable logs directory
23
+ RUN mkdir -p logs && chmod 777 logs
24
+
25
  # Expose the port your app runs on
26
  EXPOSE 7860
27