This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM archlinux:latest | |
# Install dependencies | |
RUN pacman -Syyu --noconfirm sudo openssh bash-completion nano git | |
# Generate host keys | |
RUN /usr/bin/ssh-keygen -A | |
# Add defualt user | |
RUN useradd vscode |