Spaces:
Runtime error
Runtime error
fix "Error: EACCES: permission denied, open '/app/.gitignore'"
Browse files- 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 |
|