Skip to content

Commit

Permalink
Merge pull request #16 from jodisfields/new_base
Browse files Browse the repository at this point in the history
update base image
  • Loading branch information
jodisfields authored Oct 1, 2022
2 parents 2edbe8a + a684c2c commit 357d19d
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Start from the code-server Debian base image
FROM codercom/code-server:3.12.0
FROM codercom/code-server:latest

USER coder

Expand Down Expand Up @@ -29,7 +29,7 @@ RUN sudo chown -R coder:coder /home/coder/.local
# Install apt packages:
# RUN sudo apt-get install -y ubuntu-make

# Copy files:
# Copy files:
# COPY deploy-container/myTool /home/coder/myTool

# -----------
Expand Down
15 changes: 14 additions & 1 deletion deploy-container/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,18 @@
"git.postCommitCommand": "sync",
"git.enableSmartCommit": true,
"git.confirmSync": false,
"git.autofetch": true
"git.autofetch": true,
"editor.fontLigatures": true,
"editor.bracketPairColorization.enabled": true,
"editor.inlineSuggest.enabled": true,
"editor.mouseWheelZoom": false,
"editor.parameterHints.cycle": true,
"editor.smoothScrolling": true,
"editor.stablePeek": true,
"editor.suggest.localityBonus": true,
"editor.suggest.preview": true,
"editor.suggest.shareSuggestSelections": true,
"editor.suggestSelection": "first",
"editor.tabCompletion": "on",
"editor.fontSize": 16
}

0 comments on commit 357d19d

Please sign in to comment.