fix: try redundant npm install after build stage

This commit is contained in:
KernelDeimos 2025-01-08 15:23:03 -05:00
parent 686d3de518
commit 8963eb0c4f

View File

@ -71,4 +71,8 @@ HEALTHCHECK --interval=30s --timeout=3s \
ENV NO_VAR_RUNTUME=1
# Attempt to fix `lru-cache@11.0.2` missing after build stage
# by doing a redundant `npm install` at this stage
RUN npm install
CMD ["npm", "start"]