chore: remove dependency on vulnerability for scanning

This commit is contained in:
DaanSelen
2026-01-29 14:29:55 +01:00
parent 35c45b159b
commit ddf378d617
2 changed files with 4 additions and 5 deletions

View File

@@ -102,7 +102,6 @@ jobs:
only-fixed: true only-fixed: true
write-comment: true write-comment: true
github-token: ${{ secrets.GITHUB_TOKEN }} github-token: ${{ secrets.GITHUB_TOKEN }}
exit-code: true
- name: Docker Scout Compare - name: Docker Scout Compare
uses: docker/scout-action@v1 uses: docker/scout-action@v1

View File

@@ -4,7 +4,7 @@
# #
# Pull the current golang-alpine image. # Pull the current golang-alpine image.
FROM golang:1.25-alpine AS awg-go FROM golang:1.25-alpine3.23 AS awg-go
# Install build-dependencies. # Install build-dependencies.
RUN apk add --no-cache \ RUN apk add --no-cache \
@@ -30,7 +30,7 @@ RUN go version && \
# AWG TOOLS BUILDING STAGE # AWG TOOLS BUILDING STAGE
# Base: Alpine # Base: Alpine
# #
FROM alpine:latest AS awg-tools FROM alpine:3.23 AS awg-tools
# Install needed dependencies. # Install needed dependencies.
RUN apk add --no-cache \ RUN apk add --no-cache \
@@ -55,7 +55,7 @@ RUN make && chmod +x wg*
# #
# Use the python-alpine image for building pip dependencies # Use the python-alpine image for building pip dependencies
FROM python:3.14-alpine AS pip-builder FROM python:3.14-alpine3.23 AS pip-builder
ARG TARGETPLATFORM ARG TARGETPLATFORM
@@ -91,7 +91,7 @@ RUN . /opt/wgdashboard/src/venv/bin/activate && \
# #
# Running with the python-alpine image. # Running with the python-alpine image.
FROM python:3.14-alpine AS final FROM python:3.14-alpine3.23 AS final
LABEL maintainer="dselen@nerthus.nl" LABEL maintainer="dselen@nerthus.nl"
# Install only the runtime dependencies # Install only the runtime dependencies