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 0038dba commit 28d7221Copy full SHA for 28d7221
alpine-arm64/Dockerfile
@@ -1,6 +1,9 @@
1
-FROM arm64v8/alpine:3.16
+ARG REPO=alpine
2
+ARG TAG=3.16
3
+FROM arm64v8/${REPO}:${TAG}
4
-RUN apk add g++ python3 make git bash curl perl pkgconfig libsecret-dev && uname -m
5
+RUN apk add nodejs npm g++ python3 make git bash curl perl pkgconfig libsecret-dev
6
+RUN npm install -g yarn
7
8
RUN mkdir -p /root/vscode
9
WORKDIR /root/vscode
alpine-x64/Dockerfile
@@ -2,7 +2,8 @@ ARG REPO=alpine
ARG TAG=3.16
FROM ${REPO}:${TAG}
-RUN apk add g++ python3 make git bash curl perl pkgconfig libsecret-dev
0 commit comments