Try to see whether disabling source maps will allow this to build on CI.

manage_cleardb
Sander Vocke 5 years ago
parent 8233b5aaba
commit 765980af74
  1. 2
      deploy/Dockerfile

@ -13,7 +13,7 @@ RUN npm install --only=production
COPY client/ ./ COPY client/ ./
# Prime the front-end build to find the back-end at /api. # Prime the front-end build to find the back-end at /api.
ENV REACT_APP_BACKEND "/api" ENV REACT_APP_BACKEND "/api"
RUN npm run-script build RUN GENERATE_SOURCEMAP=false npm run-script build
FROM node:12-alpine FROM node:12-alpine

Loading…
Cancel
Save