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

10 lines
251 B
Docker
Raw Permalink Normal View History

2022-01-27 10:56:14 +01:00
FROM archlinux
2022-01-28 11:45:34 +01:00
# Set up pacman
2022-01-27 10:56:14 +01:00
RUN pacman-key --init
RUN pacman-key --populate
2022-01-28 11:45:34 +01:00
# Install git and yarn
RUN pacman --noconfirm -Syu git yarn which
2022-01-28 11:45:34 +01:00
# Set the git editor to be VS Code (for obvious reasons)
2022-01-27 10:56:14 +01:00
RUN git config --global core.editor code --wait