We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b9cd77 commit 8b2afadCopy full SHA for 8b2afad
docker/Dockerfile
@@ -53,7 +53,7 @@ WORKDIR /app
53
RUN npm install -g pnpm
54
55
# Copy package.json first
56
-COPY apps/api/package*.json ./
+COPY package*.json ./
57
58
# Install dependencies
59
RUN npm install --legacy-peer-deps
@@ -62,9 +62,9 @@ RUN npm install --legacy-peer-deps
62
RUN npm install -g @nestjs/cli@$(node -p "require('./package.json').devDependencies['@nestjs/cli'].replace('^', '')")
63
64
# Copy source code
65
-COPY apps/api/src ./src
66
-COPY apps/api/tsconfig*.json ./
67
-COPY apps/api/nest-cli.json ./
+COPY src ./src
+COPY tsconfig*.json ./
+COPY nest-cli.json ./
68
69
# Build the application
70
RUN npm run build
0 commit comments