build(docker): bump node from 14.13.1-alpine3.12 to 15.0.0-alpine3.12

Bumps node from 14.13.1-alpine3.12 to 15.0.0-alpine3.12.

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot] 2020-10-23 06:51:22 +00:00 committed by GitHub
parent df86943032
commit ae40c7b0fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ ARG VERSION
RUN npm run build
# dependency environment
FROM node:14.13.1-alpine3.12 as dependency-stage
FROM node:15.0.0-alpine3.12 as dependency-stage
RUN mkdir /app && chown -R node:node /app
WORKDIR /app
RUN apk add --no-cache python3 make g++
@ -23,7 +23,7 @@ RUN SKIP_BUILD=true npm ci
RUN npm prune --production
# production environment
FROM node:14.13.1-alpine3.12 as production-stage
FROM node:15.0.0-alpine3.12 as production-stage
RUN mkdir /app && chown -R node:node /app
WORKDIR /app
RUN apk add --no-cache tini