diff options
author | crupest <crupest@outlook.com> | 2022-12-20 11:54:42 +0000 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-12-20 11:57:05 +0000 |
commit | 181d057d8ffae99147db71052f798a660af340b3 (patch) | |
tree | 6b9e99f2f73d17f00e8518e61392763e99832907 /docker/code-server/Dockerfile | |
parent | 796a2f28a79c17ad40a551c05efbc85e29e9cda3 (diff) | |
download | crupest-181d057d8ffae99147db71052f798a660af340b3.tar.gz crupest-181d057d8ffae99147db71052f798a660af340b3.tar.bz2 crupest-181d057d8ffae99147db71052f798a660af340b3.zip |
Update code-server image.
Diffstat (limited to 'docker/code-server/Dockerfile')
-rw-r--r-- | docker/code-server/Dockerfile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/docker/code-server/Dockerfile b/docker/code-server/Dockerfile index 4428d8b..9a9f143 100644 --- a/docker/code-server/Dockerfile +++ b/docker/code-server/Dockerfile @@ -1,8 +1,13 @@ FROM debian:latest +ARG GIT_NAME=crupest +ARG GIT_EMAIL=${CRUPEST_EMAIL} +ENV GIT_NAME=$GIT_NAME +ENV GIT_EMAIL=$GIT_EMAIL + WORKDIR /root -COPY install-code-server.bash /install-code-server.bash -RUN /install-code-server.bash && rm /install-code-server.bash +COPY install-code-server.bash install-dev-tools.bash /scripts/ +RUN /scripts/install-code-server.bash && /scripts/install-dev-tools.bash && rm -r /scripts ENV LANG en_US.utf8 ENV CODE_SERVER_CONFIG="/data/code-server-config.yaml" |