-
-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #295 from forabi/master
Add devcontainer config
- Loading branch information
Showing
4 changed files
with
29 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM node:20-alpine | ||
|
||
RUN apk update && apk upgrade && apk add gcompat openssl sqlite git openssh-client bash make glib zip && apk add --no-cache tzdata | ||
|
||
WORKDIR /app | ||
|
||
RUN corepack enable && corepack install -g [email protected] | ||
|
||
ENV NODE_ENV=development |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"name": "Pano Development Container", | ||
"mounts": [ | ||
"source=${localEnv:HOME}/.local/share/gnome-shell/extensions/,target=/root/.local/share/gnome-shell/extensions/,type=bind,consistency=cached" | ||
], | ||
"build": { | ||
"context": ".", | ||
"dockerfile": "Dockerfile" | ||
}, | ||
"customizations": { | ||
"vscode": { | ||
"extensions": ["johnpapa.vscode-peacock"] | ||
} | ||
}, | ||
"postCreateCommand": "bash -c 'yarn install -D'" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -92,5 +92,6 @@ | |
"pretty-bytes": "^6.1.1", | ||
"prismjs": "^1.29.0", | ||
"validate-color": "https://gitpkg.now.sh/dreamyguy/validate-color/src/validate-color" | ||
} | ||
}, | ||
"packageManager": "[email protected]" | ||
} |