Fix npm install in Dockerfile with --legacy-peer-deps
Build and Deploy / deploy (push) Successful in 20s

This commit is contained in:
CalebLewallen
2026-05-14 10:38:22 -04:00
parent b0b1186d6f
commit 724286e6e2
+1 -1
View File
@@ -4,7 +4,7 @@ WORKDIR /app
# Note: Context will be the project root, so paths are relative to root # Note: Context will be the project root, so paths are relative to root
COPY package*.json ./ COPY package*.json ./
RUN npm install RUN npm install --legacy-peer-deps
COPY . . COPY . .
RUN npm run build RUN npm run build