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

Upgrade version of Node. Update dependencies #44

Merged
merged 11 commits into from
Aug 8, 2024
2 changes: 1 addition & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

#- name: Build application archive
# run: mvn clean package -B
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#### Stage 1: Build the react application
FROM node:12.4.0 as build
FROM node:18.20.4 as build

# Configure the main working directory inside the docker image.
# This is the base directory used in any further RUN, COPY, and ENTRYPOINT
Expand Down
3 changes: 1 addition & 2 deletions build-utils/webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const commonPaths = require('./common-paths');

const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const FlowWebpackPlugin = require('flow-webpack-plugin')


const config = {
entry: {
Expand Down Expand Up @@ -44,7 +44,6 @@ const config = {
template: `public/index.html`,
favicon: `public/favicon.ico`
}),
new FlowWebpackPlugin(),
]
};

Expand Down
Loading
Loading