huodon commited on
Commit
c5b4830
·
1 Parent(s): 3e1fb80

fix "Error: EACCES: permission denied, open '/app/.gitignore'"

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -4
Dockerfile CHANGED
@@ -10,12 +10,9 @@ WORKDIR /app
10
  # Copy dist directory to the container
11
  COPY dist ./dist
12
 
13
- # Copy package.json to the container
14
  COPY package.json ./
15
-
16
- # Copy langgraph.json to the container
17
  COPY langgraph.json ./
18
-
19
  # Install dependencies using pnpm
20
  RUN pnpm install
21
 
 
10
  # Copy dist directory to the container
11
  COPY dist ./dist
12
 
 
13
  COPY package.json ./
 
 
14
  COPY langgraph.json ./
15
+ COPY .gitignore /
16
  # Install dependencies using pnpm
17
  RUN pnpm install
18