diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 92f415a..d4d4205 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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: diff --git a/Dockerfile b/Dockerfile index 3822f2e..06ae981 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 @@ -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