File tree 2 files changed +10
-5
lines changed
2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change
1
+ # Start with our deploy-container image (Debian)
2
+ FROM bencdr/deploy-container:latest
3
+
4
+ USER coder
5
+
6
+ # You can add custom software and dependencies for your environment here. Some examples:
7
+
8
+ # RUN code-server --install-extension esbenp.prettier-vscode
9
+ # RUN sudo apt-get install -y build-essential
10
+ # RUN COPY myTool /home/coder/myTool
Original file line number Diff line number Diff line change @@ -13,11 +13,6 @@ ENV SHELL=/bin/bash
13
13
RUN sudo apt-get update && sudo apt-get install unzip -y
14
14
RUN curl https://rclone.org/install.sh | sudo bash
15
15
16
- # You can add custom software and dependencies for your environment here. Some examples:
17
- # RUN code-server --install-extension esbenp.prettier-vscode
18
- # RUN sudo apt-get install -y build-essential
19
- # RUN COPY myTool /home/coder/myTool
20
-
21
16
# Fix permissions for code-server
22
17
RUN sudo chown -R coder:coder /home/coder/.local
23
18
You can’t perform that action at this time.
0 commit comments