From f7c10480b37885cb4ae681063bae95f44a77d3ae Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Tue, 19 Oct 2021 06:29:41 +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 88ac297..222892c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build Container -FROM node:14.17.1-alpine AS builder +FROM node:14.18.0-alpine AS builder WORKDIR /app @@ -17,7 +17,7 @@ RUN yarn build # Production Container -FROM node:14.17.1-alpine +FROM node:14.18.0-alpine LABEL maintainer="Chao Tzu-Hsien"