Skip to content

Commit

Permalink
node 16 (#163)
Browse files Browse the repository at this point in the history
Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
  • Loading branch information
jakolehm authored Feb 1, 2022
1 parent 95e9bbe commit 5ad5d6a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
node-version: [16.x]
steps:
- name: Checkout Release
uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:14-alpine as build
FROM node:16-alpine as build

RUN mkdir /app
WORKDIR /app
Expand All @@ -9,7 +9,7 @@ RUN apk add --update python3 gcc g++ make && \
yarn dist && \
yarn install --frozen-lockfile --prod

FROM node:14-alpine
FROM node:16-alpine

RUN mkdir /app \
&& addgroup -S bored && adduser -S bored -G bored
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:14-alpine
FROM node:16-alpine

RUN mkdir /app
WORKDIR /app
Expand Down

0 comments on commit 5ad5d6a

Please sign in to comment.