Skip to content

Commit 968cd27

Browse files
committed
fix: dist path
1 parent 2e5b4be commit 968cd27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ FROM node:22-alpine
99
WORKDIR /app
1010
COPY --from=build /app/package.json /app/package.json
1111
COPY --from=build /app/package-lock.json /app/package-lock.json
12-
COPY --from=build /app/dist dist
12+
COPY --from=build /app/dist /app/dist
1313
RUN npm ci --omit=dev --ignore-scripts
1414
ENV NODE_ENV=production
1515
CMD ["node", "dist/index.js"]

0 commit comments

Comments
 (0)