fix Dockerfile
Build and Push Docker Image / build (push) Successful in 14s

This commit is contained in:
2026-05-27 22:39:22 -05:00
parent 6ce9788a6b
commit 109cd3af05
2 changed files with 5 additions and 1 deletions
+3 -1
View File
@@ -16,7 +16,9 @@
"Bash(node --check auth.js)", "Bash(node --check auth.js)",
"Bash(node --check db/database.js)", "Bash(node --check db/database.js)",
"Bash(node -e ' *)", "Bash(node -e ' *)",
"Bash(node --check lib/rolloff.js)" "Bash(node --check lib/rolloff.js)",
"Bash(git -C F:/CODING/cpas/cpas add .)",
"Bash(git -C F:/CODING/cpas/cpas status)"
] ]
} }
} }
+2
View File
@@ -34,9 +34,11 @@ WORKDIR /app
COPY --from=builder /build/node_modules ./node_modules COPY --from=builder /build/node_modules ./node_modules
COPY --from=builder /build/client/dist ./client/dist COPY --from=builder /build/client/dist ./client/dist
COPY server.js ./ COPY server.js ./
COPY auth.js ./
COPY package.json ./ COPY package.json ./
COPY db/ ./db/ COPY db/ ./db/
COPY pdf/ ./pdf/ COPY pdf/ ./pdf/
COPY lib/ ./lib/
COPY demo/ ./demo/ COPY demo/ ./demo/
COPY client/public/static ./client/dist/static COPY client/public/static ./client/dist/static
RUN mkdir -p /data RUN mkdir -p /data