Skip to content

Commit

Permalink
fix devcontainer dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
doerfli committed Apr 2, 2024
1 parent bd1a260 commit 2d07997
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# [Choice] Node.js version (use -bullseye variants on local arm64/Apple Silicon): 18, 16, 14, 18-bullseye, 16-bullseye, 14-bullseye, 18-buster, 16-buster, 14-buster
ARG VARIANT=18-bullseye
FROM mcr.microsoft.com/devcontainers/typescript-node:0-${VARIANT}
ARG VARIANT=20-bookworm
FROM mcr.microsoft.com/devcontainers/typescript-node:${VARIANT}


# install mcfly as root
RUN curl -LSfs https://raw.githubusercontent.com/cantino/mcfly/master/ci/install.sh | sh -s -- --git cantino/mcfly
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ services:
context: ..
dockerfile: .devcontainer/Dockerfile
args:
VARIANT: 20no-bullseye
VARIANT: "1-20"
volumes:
- ..:/workspaces/depeg-backend-processor:cached
- depeg-backend-processor-node_modules:/workspaces/depeg-backend-processor/node_modules
Expand Down
4 changes: 2 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"peacock.remoteColor": "73c2fb",
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#a5d8fc",
"activityBar.background": "#a5d8fc",
Expand All @@ -17,6 +18,5 @@
"titleBar.activeForeground": "#15202b",
"titleBar.inactiveBackground": "#73c2fb99",
"titleBar.inactiveForeground": "#15202b99"
},
"peacock.remoteColor": "73c2fb"
}
}

0 comments on commit 2d07997

Please sign in to comment.