fix: pin Express to v4 to avoid path-to-regexp v8 breaking changes

This commit is contained in:
Danny
2026-01-16 14:43:37 -06:00
parent 10ed6a395a
commit 2e7db6a952
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -11,6 +11,6 @@ FROM node:20-alpine
WORKDIR /app
COPY --from=build /app/dist ./dist
COPY server.js .
RUN npm install express
RUN npm install express@4
EXPOSE 80
CMD ["node", "server.js"]