12 lines
289 B
Docker
12 lines
289 B
Docker
FROM docker.io/archlinux:latest
|
|
|
|
RUN pacman -Sy --noconfirm openssh git vim go zsh curl yt-dlp tmux pipewire-jack ffmpeg at
|
|
RUN /usr/bin/ssh-keygen -A
|
|
RUN /usr/bin/sed -i 's/bash/zsh/' /etc/passwd
|
|
|
|
COPY ./authorized_keys /root/.ssh/authorized_keys
|
|
|
|
EXPOSE 22
|
|
|
|
CMD ["/usr/sbin/sshd", "-D"]
|