From bc81cc9f81bf4913068e7ebbedc055752ae9317f Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Thu, 2 Sep 2021 05:18:32 +0000 Subject: [PATCH] fix: Dockerfile to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE311-APKTOOLS-1534687 - https://snyk.io/vuln/SNYK-ALPINE311-OPENSSL-1569447 - https://snyk.io/vuln/SNYK-ALPINE311-OPENSSL-1569447 - https://snyk.io/vuln/SNYK-ALPINE311-OPENSSL-1569451 - https://snyk.io/vuln/SNYK-ALPINE311-OPENSSL-1569451 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 30be0c6..7a83af5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:lts-alpine AS build +FROM node:14.17.6-alpine3.11 AS build WORKDIR /app @@ -14,7 +14,7 @@ RUN apk add --no-cache \ && npm run setup \ && npm run build -FROM node:lts-alpine +FROM node:14.17.6-alpine3.11 LABEL maintainer='Michaƫl "e7d" Ferrand '