We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b02cbaa commit 383d665Copy full SHA for 383d665
2 files changed
.github/workflows/build.yml
@@ -17,8 +17,9 @@ jobs:
17
fail-fast: false
18
matrix:
19
include:
20
- - image: asdf
21
- tag_suffix: ''
+ # asdf build-image is deprecated and not getting updated
+ #- image: asdf
22
+ # tag_suffix: ''
23
- image: mise
24
tag_suffix: ''
25
- image: node-playwright
build-images/node-playwright.Dockerfile
@@ -1,8 +1,5 @@
1
-FROM ghcr.io/code0-tech/build-images/asdf:196.1
2
-SHELL ["/usr/bin/bash", "-lc"]
3
-
4
-RUN asdf plugin add nodejs https://github.com/asdf-vm/asdf-nodejs.git
+FROM ghcr.io/code0-tech/build-images/mise:196.1
5
6
ARG NODE_VERSION
7
-RUN asdf install nodejs $NODE_VERSION
8
-RUN asdf shell nodejs $NODE_VERSION && npx playwright install-deps && npx playwright install
+RUN mise use -g node@$NODE_VERSION
+RUN npx playwright install-deps && npx playwright install
0 commit comments