Skip to content

Commit

Permalink
fix: docker-admin-ui/Dockerfile to reduce vulnerabilities
Browse files Browse the repository at this point in the history
* fix: docker-admin-ui/Dockerfile to reduce vulnerabilities

The following vulnerabilities are fixed with an upgrade:
- https://snyk.io/vuln/SNYK-ALPINE316-OPENSSL-2941806
- https://snyk.io/vuln/SNYK-ALPINE316-OPENSSL-2941806
- https://snyk.io/vuln/SNYK-UPSTREAM-NODE-2946723
- https://snyk.io/vuln/SNYK-UPSTREAM-NODE-2946727
- https://snyk.io/vuln/SNYK-UPSTREAM-NODE-2946729

* build: update nodejs and alpine source

Co-authored-by: snyk-bot <[email protected]>
Co-authored-by: iromli <[email protected]>
  • Loading branch information
3 people authored Jul 21, 2022
1 parent 2f71120 commit a2050c8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker-admin-ui/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:14.19.3-alpine3.16 AS builder
FROM node:14.20.0-alpine3.16 AS builder

RUN apk update \
&& apk upgrade \
Expand Down Expand Up @@ -28,14 +28,14 @@ RUN git clone --filter blob:none --no-checkout https://github.com/GluuFederation
# Application
# ===========

FROM node:14.19.3-alpine3.16
FROM node:14.20.0-alpine3.16

# ======
# alpine
# ======

RUN apk update \
&& apk upgrade \
&& apk upgrade --available \
&& apk add --no-cache tini openssl python3 py3-cryptography py3-psycopg2 nginx py3-grpcio \
&& apk add --no-cache --virtual .build-deps git

Expand Down

0 comments on commit a2050c8

Please sign in to comment.