Skip to content
Open
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: 3 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [24.x]

steps:
- name: Checkout Repository
Expand All @@ -26,7 +26,7 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [24.x]

steps:
- name: Checkout Repository
Expand All @@ -43,7 +43,7 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [24.x]

steps:
- name: Checkout Repository
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [24.x]

steps:
- name: Checkout Repository
Expand All @@ -26,7 +26,7 @@ jobs:

strategy:
matrix:
node-version: [16.x]
node-version: [24.x]

steps:
- name: Checkout Repository
Expand Down
6 changes: 3 additions & 3 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
FROM node:16.14.2-alpine3.15
FROM node:24-alpine3.22

LABEL \
mitre.name=cveawg \
mitre.project=cveawg

ENV PIP_BREAK_SYSTEM_PACKAGES=1
# Run an optional pre-flight script for host-dependent reqs such as CA certs
# Use --build-arg:
# docker compose --build-arg CVE_PREFLIGHT="wget -q -O - --no-check-certificate http://pki.local/install_certs.sh | sh"
Expand All @@ -12,8 +13,7 @@ RUN sh -c "${CVE_PREFLIGHT:-exit 0}"

# Install python/pip (required for argon2 build from source)
ENV PYTHONUNBUFFERED=1
RUN apk add --update --no-cache python3
RUN python3 -m ensurepip
RUN apk add --update --no-cache python3 py3-pip
RUN pip3 install --no-cache --upgrade pip setuptools

# Install build essentials (also required for argon2)
Expand Down
6 changes: 3 additions & 3 deletions docker/Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
FROM node:16.14.2-alpine3.15
FROM node:24-alpine3.22
# do not copy files we mount in compose
# our local and production docker files could co-exist using "targets" in
# the `FROM` statements

ENV PIP_BREAK_SYSTEM_PACKAGES=1
LABEL \
mitre.name=cveawg \
mitre.project=cveawg
Expand All @@ -15,8 +16,7 @@ RUN sh -c "${CVE_PREFLIGHT:-exit 0}"

# Install python/pip (required for argon2 build from source)
ENV PYTHONUNBUFFERED=1
RUN apk add --update --no-cache python3
RUN python3 -m ensurepip
RUN apk add --update --no-cache python3 py3-pip
RUN pip3 install --no-cache --upgrade pip setuptools

# Install build essentials (also required for argon2)
Expand Down
Loading