diff options
author | crupest <crupest@outlook.com> | 2022-12-02 14:40:44 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-12-02 14:40:44 +0800 |
commit | e38575ab77ba2fd6ccc31cff894c785b7baa1e07 (patch) | |
tree | 9d2c858d08ed73c52b05146d3d7a1109904fd24b /docker/code-server | |
parent | 156ac991935926a250b0af7a251152d87cd485a7 (diff) | |
download | crupest-e38575ab77ba2fd6ccc31cff894c785b7baa1e07.tar.gz crupest-e38575ab77ba2fd6ccc31cff894c785b7baa1e07.tar.bz2 crupest-e38575ab77ba2fd6ccc31cff894c785b7baa1e07.zip |
Fix.
Diffstat (limited to 'docker/code-server')
-rw-r--r-- | docker/code-server/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/code-server/Dockerfile b/docker/code-server/Dockerfile index 6deb4c9..2b2c99f 100644 --- a/docker/code-server/Dockerfile +++ b/docker/code-server/Dockerfile @@ -2,7 +2,7 @@ FROM debian:latest WORKDIR /root COPY install-code-server.bash /install-code-server.bash -RUN /install-code-server.bash +RUN /install-code-server.bash && rm /install-code-server.bash ENV LANG en_US.utf8 ENV CODE_SERVER_CONFIG="/data/code-server-config.yaml" |