Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/fix missing build binaries #1077

Merged
merged 3 commits into from
Jan 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading