File tree 1 file changed +25
-0
lines changed
1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,31 @@ An container image built for deploying code-server.
9
9
10
10
Docker Hub: ` bencdr/code-server-deploy-container `
11
11
12
+ ## Modifying your code-server environment:
13
+
14
+ We've included some examples on how to add additoonal dependencies in the root-level [ Dockerfile] ( ../Dockerfile ) :
15
+
16
+ ``` Dockerfile
17
+ ...
18
+
19
+ # You can add custom software and dependencies for your environment below
20
+ # -----------
21
+
22
+ # Install a VS Code extension:
23
+ # Note: we use a different marketplace than VS Code. See https://github.com/cdr/code-server/blob/main/docs/FAQ.md#differences-compared-to-vs-code
24
+ RUN code-server --install-extension esbenp.prettier-vscode
25
+
26
+ # Install apt packages:
27
+ RUN sudo apt-get install -y ubuntu-make
28
+
29
+ # Copy files:
30
+ COPY deploy-container/myTool /home/coder/myTool
31
+
32
+ # -----------
33
+
34
+ ...
35
+ ```
36
+
12
37
---
13
38
14
39
## Environment variables:
You can’t perform that action at this time.
0 commit comments