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 9bc60dd commit 6ff7a83Copy full SHA for 6ff7a83
docker/code-server/Dockerfile.alpine
@@ -11,7 +11,13 @@ ENV container docker
11
ENV LC_ALL C
12
ENV CODE_SERVER_VERSION=$VERSION
13
14
-RUN apk add --update curl ca-certificates zsh sudo gpg \
+RUN cat <<EOF > /etc/apk/repositories
15
+https://dl-cdn.alpinelinux.org/alpine/edge/main
16
+https://dl-cdn.alpinelinux.org/alpine/edge/community
17
+https://dl-cdn.alpinelinux.org/alpine/edge/testing
18
+EOF
19
+
20
+RUN apk update && apk add curl ca-certificates zsh sudo gpg bash \
21
&& adduser coder -D -s $(which zsh) \
22
&& echo "coder ALL=(ALL) NOPASSWD:ALL" | tee -a /etc/sudoers.d/coder
23
0 commit comments