1
Fork 0
This repository has been archived on 2022-08-23. You can view files and clone it, but cannot push or open issues or pull requests.
web-drs-frontend/.devcontainer/Dockerfile
Tobias Berger f9614d4c38
Install which into devcontainer
Needed for pre-commit hook
2022-02-28 12:08:05 +01:00

10 lines
No EOL
251 B
Docker

FROM archlinux
# Set up pacman
RUN pacman-key --init
RUN pacman-key --populate
# Install git and yarn
RUN pacman --noconfirm -Syu git yarn which
# Set the git editor to be VS Code (for obvious reasons)
RUN git config --global core.editor code --wait