better formatting

This commit is contained in:
Ben Potter
2021-03-16 09:55:17 -04:00
committed by GitHub
parent 9d1fadad46
commit eb8121ffdc

View File

@@ -14,11 +14,6 @@ Docker Hub: `bencdr/code-server-deploy-container`
We've included some examples on how to add additoonal dependencies in the root-level [Dockerfile](../Dockerfile):
```Dockerfile
...
# You can add custom software and dependencies for your environment below
# -----------
# Install a VS Code extension:
# 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
RUN code-server --install-extension esbenp.prettier-vscode
@@ -28,10 +23,6 @@ RUN sudo apt-get install -y ubuntu-make
# Copy files:
COPY deploy-container/myTool /home/coder/myTool
# -----------
...
```
---