Skip to content

Commit

Permalink
chore: update node, npm and packages
Browse files Browse the repository at this point in the history
fix: breaking changes in fastify
fix: add missing labels
  • Loading branch information
rorlic committed Sep 25, 2024
1 parent 9e42138 commit cd735ed
Show file tree
Hide file tree
Showing 5 changed files with 399 additions and 339 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# build environment
FROM node:20-bullseye-slim AS builder
FROM node:22-bullseye-slim AS builder
# fix vulnerabilities
ARG NPM_TAG=10.5.2
ARG NPM_TAG=10.8.3
RUN npm install -g npm@${NPM_TAG}
# build it
WORKDIR /build
Expand All @@ -10,7 +10,7 @@ RUN npm ci
RUN npm run build

# run environment
FROM node:20.11.0-bullseye-slim
FROM node:22.9.0-bullseye-slim
# fix vulnerabilities
# note: trivy insists this to be on the same RUN line
RUN apt-get -y update && apt-get -y upgrade
Expand All @@ -37,7 +37,7 @@ ENV RUN_TEST_API_KEY=
ENV CHECK_TEST_API_KEY=
ENV DELETE_TEST_API_KEY=
ENV CUSTOM_LABELS=
ENV NODE_ENV production
ENV NODE_ENV=production
EXPOSE 80
# install java runtime
ARG JAVA_TAG=17
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@ services:
- RUN_TEST_API_KEY=${RUN_TEST_API_KEY:-}
- CHECK_TEST_API_KEY=${CHECK_TEST_API_KEY:-}
- DELETE_TEST_API_KEY=${DELETE_TEST_API_KEY:-}
- CUSTOM_LABELS='threads size type component members_per_page'
- CUSTOM_LABELS=threads size type component members_per_page test_plan_name views
Loading

0 comments on commit cd735ed

Please sign in to comment.