From afe7a709009f43fba1cef22aa6c136976507c7bc Mon Sep 17 00:00:00 2001 From: Jef LeCompte Date: Thu, 4 Mar 2021 13:16:49 -0500 Subject: [PATCH] chore(nodejs): bump version (#2088) --- .github/workflows/ci.yaml | 2 +- .node-version | 2 +- Dockerfile | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 30e8970..5260997 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -16,7 +16,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v2 with: - node-version: 15.10.0 + node-version: 15.11.0 - name: Setup build cache uses: actions/cache@v2 with: diff --git a/.node-version b/.node-version index 9f7cbe7..33db3f0 100644 --- a/.node-version +++ b/.node-version @@ -1 +1 @@ -15.10.0 +15.11.0 diff --git a/Dockerfile b/Dockerfile index 240c499..565f22c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:15.10.0-alpine3.12 AS builder +FROM node:15.11.0-alpine3.13 AS builder LABEL org.opencontainers.image.source="https://github.com/jef/streetmerchant" @@ -15,7 +15,7 @@ COPY src/ src/ RUN npm run compile RUN npm prune --production -FROM node:15.10.0-alpine3.12 +FROM node:15.11.0-alpine3.13 RUN apk add --no-cache chromium