diff options
author | crupest <crupest@outlook.com> | 2022-11-29 12:29:05 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-11-29 12:29:05 +0800 |
commit | 2dc92e291181adc00073039058ca7aefc2d666c3 (patch) | |
tree | 26f9a0cc102b975b3af4bbc24cf035bac146f2bd | |
parent | 90df2d999c0fd3153ad697b1b49161106b007b43 (diff) | |
download | crupest-2dc92e291181adc00073039058ca7aefc2d666c3.tar.gz crupest-2dc92e291181adc00073039058ca7aefc2d666c3.tar.bz2 crupest-2dc92e291181adc00073039058ca7aefc2d666c3.zip |
Use node for code-server.
-rw-r--r-- | docker/arch-code-server/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/arch-code-server/Dockerfile b/docker/arch-code-server/Dockerfile index fe810cd..94fd76f 100644 --- a/docker/arch-code-server/Dockerfile +++ b/docker/arch-code-server/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:latest +FROM node:alpine RUN apk add --no-cache alpine-sdk bash libstdc++ libc6-compat && npm config set python python3 && npm install --global code-server --unsafe-perm WORKDIR /root |