diff --git a/.github/workflows/push.yaml b/.github/workflows/push.yaml index d4e066d..d9fe8d3 100644 --- a/.github/workflows/push.yaml +++ b/.github/workflows/push.yaml @@ -21,6 +21,7 @@ jobs: - node-12-eas - node-14-eas - node-16-curl-tidy + - node-16-curl-tidy-yarn-3 steps: - name: Set up Docker Buildx diff --git a/README.md b/README.md index b19fe6a..dffc32e 100644 --- a/README.md +++ b/README.md @@ -8,3 +8,4 @@ Images: - `ghcr.io/troopers/node-12-eas`: use it to run Expo EAS - `ghcr.io/troopers/node-14-eas`: use it to run Expo EAS with Expo and SDK 45 - `ghcr.io/troopers/node-16-curl-tidy`: use it to run node and tidy +- `ghcr.io/troopers/node-16-curl-tidy-yarn-3`: use it to run node and tidy, with yarn 3 diff --git a/node-16-curl-tidy-yarn-3/Dockerfile b/node-16-curl-tidy-yarn-3/Dockerfile new file mode 100644 index 0000000..5fb4c6d --- /dev/null +++ b/node-16-curl-tidy-yarn-3/Dockerfile @@ -0,0 +1,5 @@ +FROM node:16-bullseye-slim + +RUN yarn set version 3.6.2 && yarn --version + +RUN apt-get update && apt-get install --yes -qq curl tidy