We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0cbc598 commit 31ae69dCopy full SHA for 31ae69d
Dockerfile
@@ -1,11 +1,5 @@
1
FROM codercom/code-server:latest
2
3
-# Install rclone (support for remote filesystem)
4
-RUN sudo apt-get update && sudo apt-get install -y rclone
5
-
6
-# Other dev tools would be installed here
7
-# RUN sudo apt-get install -y
8
9
USER coder
10
11
# Apply VS Code settings
@@ -14,6 +8,9 @@ COPY settings.json .local/share/code-server/User/settings.json
14
# Use bash shell
15
ENV SHELL=/bin/bash
16
+# Install rclone (support for remote filesystem)
12
+RUN curl https://rclone.org/install.sh | sudo bash
13
+
17
# Fix permissions
18
RUN sudo chown -R coder:coder /home/coder/.local
19
0 commit comments