4dd84523d8
Needed for pre-commit hook
10 lines
No EOL
251 B
Docker
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 |