mirror of
https://github.com/docker/setup-qemu-action
synced 2024-11-22 11:51:40 +00:00
Merge pull request #48 from crazy-max/node-16
Node 16 as default runtime
This commit is contained in:
commit
8b122486ce
2 changed files with 2 additions and 2 deletions
|
@ -21,5 +21,5 @@ outputs:
|
||||||
description: 'Available platforms (comma separated)'
|
description: 'Available platforms (comma separated)'
|
||||||
|
|
||||||
runs:
|
runs:
|
||||||
using: 'node12'
|
using: 'node16'
|
||||||
main: 'dist/index.js'
|
main: 'dist/index.js'
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# syntax=docker/dockerfile:1
|
# syntax=docker/dockerfile:1
|
||||||
|
|
||||||
ARG NODE_VERSION=12
|
ARG NODE_VERSION=16
|
||||||
|
|
||||||
FROM node:${NODE_VERSION}-alpine AS base
|
FROM node:${NODE_VERSION}-alpine AS base
|
||||||
RUN apk add --no-cache cpio findutils git
|
RUN apk add --no-cache cpio findutils git
|
||||||
|
|
Loading…
Reference in a new issue