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 4dd84523d8 Install which into devcontainer
Needed for pre-commit hook
2022-01-28 11:05:22 +00: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