12 lines
408 B
Docker
12 lines
408 B
Docker
# SPDX-License-Identifier: Apache-2.0
|
|
# SPDX-License-Identifier: Unlicense
|
|
|
|
from archlinux:latest
|
|
copy tmp/.detee /root/.detee
|
|
run pacman -Syu --noconfirm
|
|
run pacman -S fish neovim openssh python3 --noconfirm
|
|
run mkdir -p /root/.config/fish/completions/
|
|
run mv /root/.detee/bin /usr/local/
|
|
run mv /root/.detee/deps /usr/local/
|
|
run mv /root/.detee/detee-cli.fish /root/.config/fish/completions/detee-cli.fish
|