Skip to content

Commit

Permalink
node upgrade - v18 (#191)
Browse files Browse the repository at this point in the history
  • Loading branch information
ludeknovy authored Jan 8, 2023
1 parent 69335dd commit 3713948
Show file tree
Hide file tree
Showing 5 changed files with 8,846 additions and 6,196 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/static-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
node-version: '18'
- name: Install modules
run: npm install
- name: Run ESLint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
node-version: '18'
- name: Install modules
run: npm install
- name: Build the docker-compose stack
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
node-version: '18'
- name: Install modules
run: npm install
- name: Run unit tests
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM node:16.18.0-alpine3.15 as builder
FROM node:18.13.0-alpine3.17 as builder

RUN apk --update add python2 git build-base
RUN apk --update add git build-base

WORKDIR /src/be

Expand All @@ -16,7 +16,7 @@ COPY /src ./src/

RUN npm run build

FROM node:16.18.0-alpine3.15
FROM node:18.13.0-alpine3.17

ADD https://github.com/ufoscout/docker-compose-wait/releases/download/2.7.2/wait /wait
RUN chmod +x /wait
Expand Down
Loading

0 comments on commit 3713948

Please sign in to comment.