From 2fe6d24c57a48d2d4e3eb140f590e0f6bdc570c9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 6 Oct 2020 02:44:18 +0000 Subject: [PATCH] build(docker): bump node from 14.12.0-alpine3.12 to 14.13.0-alpine3.12 Bumps node from 14.12.0-alpine3.12 to 14.13.0-alpine3.12. Signed-off-by: dependabot[bot] --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ff9c3bc7..7499854a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ ARG REVISION RUN npm run build # dependency environment -FROM node:14.12.0-alpine3.12 as dependency-stage +FROM node:14.13.0-alpine3.12 as dependency-stage RUN mkdir /app && chown -R node:node /app WORKDIR /app RUN apk add --no-cache python3 make g++ @@ -24,7 +24,7 @@ RUN SKIP_BUILD=true npm ci RUN npm prune --production # production environment -FROM node:14.12.0-alpine3.12 as production-stage +FROM node:14.13.0-alpine3.12 as production-stage LABEL org.opencontainers.image.title="SyncLounge" LABEL org.opencontainers.image.description="Enjoy Plex with your friends. In Sync. Together." LABEL org.opencontainers.image.url="https://synclounge.tv"