codespace
This commit is contained in:
parent
128b092824
commit
cd9a72145e
2 changed files with 12 additions and 0 deletions
5
.devcontainer/Dockerfile
Normal file
5
.devcontainer/Dockerfile
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
FROM archlinux
|
||||||
|
RUN pacman-key --init
|
||||||
|
RUN pacman-key --populate
|
||||||
|
RUN pacman --noconfirm -Syu git yarn
|
||||||
|
RUN git config --global core.editor code --wait
|
7
.devcontainer/devcontainer.json
Normal file
7
.devcontainer/devcontainer.json
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"name": "Docker Container",
|
||||||
|
"build": {
|
||||||
|
"dockerfile": "Dockerfile",
|
||||||
|
},
|
||||||
|
"postCreateCommand": "git submodule update --init && yarn install"
|
||||||
|
}
|
Reference in a new issue