fix: copy public folder to production docker image stage to serve APK downloads

This commit is contained in:
2026-06-27 21:17:33 +07:00
parent f39750af72
commit 277f647e40
3 changed files with 2 additions and 1 deletions
+1
View File
@@ -33,6 +33,7 @@ COPY package*.json ./
COPY --from=build /usr/src/app/node_modules ./node_modules
COPY --from=build /usr/src/app/dist ./dist
COPY --from=build /usr/src/app/prisma ./prisma
COPY --from=build /usr/src/app/public ./public
EXPOSE 3001
CMD ["node", "dist/src/main.js"]