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

[Snyk] Security upgrade node from 18.18-alpine3.17 to 20.8.0-alpine3.17 #332

Merged
merged 14 commits into from
Aug 30, 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
6 changes: 0 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,6 @@ jobs:
run: npm install
- name: Build the docker-compose stack
run: docker compose -f docker-compose.testing.yaml up -d
# - name: Run contract tests
# run: npm run test:contract
# env:
# ENVIRONMENT: CI
# JWT_TOKEN: 123
# JWT_TOKEN_LOGIN: 456
- name: Run integration tests
run: npm run test:integration
env:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:18.18-alpine3.17 as builder
FROM node:20.8.0-alpine3.17 as builder

RUN apk --update add git build-base

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

RUN npm run build

FROM node:18.18-alpine3.17
FROM node:20.8.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