Skip to content

feat(Node14) Add new minor version 14.15 #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/dockerhub-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
image: ['10.16', '14.13']
image: ['10.16', '14.13', '14.15']
steps:
- name: Check out the repo
uses: actions/checkout@v2
Expand Down
18 changes: 18 additions & 0 deletions 14.15/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
ARG NODE_VERSION=14.15
FROM node:$NODE_VERSION-alpine

WORKDIR /app

ENV YARN_VERSION 1.22.10

RUN apk update && \
apk add --no-cache git g++ make python && \
apk add --no-cache --virtual .build-deps-yarn curl && \
curl -fSLO --compressed "https://yarnpkg.com/downloads/$YARN_VERSION/yarn-v$YARN_VERSION.tar.gz" && \
tar -xzf yarn-v$YARN_VERSION.tar.gz -C /opt/ && \
ln -snf /opt/yarn-v$YARN_VERSION/bin/yarn /usr/local/bin/yarn && \
ln -snf /opt/yarn-v$YARN_VERSION/bin/yarnpkg /usr/local/bin/yarnpkg && \
rm yarn-v$YARN_VERSION.tar.gz && \
apk del .build-deps-yarn && \
npm config set scripts-prepend-node-path auto && \
npm install --global gulp-cli