Skip to content
This repository has been archived by the owner on Dec 16, 2021. It is now read-only.

Commit

Permalink
chore: update package for node 16 (#408)
Browse files Browse the repository at this point in the history
  • Loading branch information
strophy committed Sep 26, 2021
1 parent 0be9b5b commit 64f68fb
Show file tree
Hide file tree
Showing 5 changed files with 6,531 additions and 233 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/.env
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
DRIVE_BRANCH=v0.21-dev
DASHMATE_BRANCH=convenient-errors
TEST_SUITE_BRANCH=convenient-errors
SDK_BRANCH=convenient-errors
# DASHMATE_BRANCH=
# TEST_SUITE_BRANCH=
# SDK_BRANCH=
4 changes: 2 additions & 2 deletions .github/workflows/test_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

- uses: actions/setup-node@v2
with:
node-version: '12'
node-version: '16'

- name: Enable NPM cache
uses: actions/cache@v2
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:

- uses: actions/setup-node@v2
with:
node-version: '12'
node-version: '16'

- name: Set up Docker BuildX
id: buildx
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# syntax = docker/dockerfile:1.2
FROM node:12-alpine3.12 as node_modules
FROM node:16-alpine as node_modules

RUN apk update && \
apk --no-cache upgrade && \
Expand All @@ -20,7 +20,7 @@ COPY package.json package-lock.json /

RUN --mount=type=cache,target=/root/.npm --mount=type=cache,target=/root/.cache npm ci --production

FROM node:12-alpine3.12
FROM node:16-alpine

ARG NODE_ENV=production
ENV NODE_ENV ${NODE_ENV}
Expand Down
Loading

0 comments on commit 64f68fb

Please sign in to comment.