Skip to content

Commit

Permalink
Merge pull request #1077 from ORCID/feature/fix-missing-build-binaries
Browse files Browse the repository at this point in the history
Feature/fix missing build binaries
  • Loading branch information
jthomas-orcid authored Jan 3, 2024
2 parents 5ee720e + 5358d1a commit e2b90fb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gateway/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@
"webpack:dev": "npm run webpack-dev-server -- --config webpack/webpack.dev.js --inline --hot --port=9060 --watch-content-base --env.stats=minimal",
"webpack:dev-verbose": "npm run webpack-dev-server -- --config webpack/webpack.dev.js --inline --hot --port=9060 --watch-content-base --profile --progress --env.stats=normal",
"webpack:build:main": "npm run webpack -- --config webpack/webpack.dev.js --env.stats=minimal",
"webpack:build": "npm run cleanup && npm run webpack:build:main",
"webpack:build": "./node/node_modules/npm/bin/npm run cleanup && ./node/node_modules/npm/bin/npm run webpack:build:main",
"webpack:local:main": "npm run webpack -- --config webpack/webpack.local.js --profile",
"webpack:local": "npm run cleanup && npm run webpack:local:main && npm run clean-www",
"webpack:qa:main": "npm run webpack -- --config webpack/webpack.qa.js --profile",
Expand Down
7 changes: 5 additions & 2 deletions ui/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,17 @@ COPY package*.json ./

# If you are building your code for production
# RUN npm install --only=production
RUN npm install
RUN \
npm config list && \
npm config delete proxy && \
npm install

# Bundle app source
COPY . .

RUN npm run build

FROM nginx
FROM nginx:1.24.0-bullseye

RUN \
apt-get update && \
Expand Down

0 comments on commit e2b90fb

Please sign in to comment.