1
Fork 0

codespace

This commit is contained in:
Tobias Berger 2022-01-27 09:56:14 +00:00 committed by Tobias Berger
parent f743c4680c
commit 1250239819
Signed by: toby
GPG key ID: 2D05EFAB764D6A88
2 changed files with 12 additions and 0 deletions

5
.devcontainer/Dockerfile Normal file
View 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

View file

@ -0,0 +1,7 @@
{
"name": "Docker Container",
"build": {
"dockerfile": "Dockerfile",
},
"postCreateCommand": "git submodule update --init && yarn install"
}