-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
27 lines (17 loc) · 1.26 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
FROM ghcr.io/carapace-sh/base
RUN apt-get update && apt-get install -y fish libicu72 xonsh zsh
COPY --from=ghcr.io/carapace-sh/shell-bash-ble /usr/local/bin/bash-ble /usr/local/bin/bash-ble
COPY --from=ghcr.io/carapace-sh/shell-bash-ble /root/.config/bash-ble /root/.config/bash-ble
COPY --from=ghcr.io/carapace-sh/shell-elvish /usr/local/bin/elvish /usr/local/bin/elvish
COPY --from=ghcr.io/carapace-sh/shell-elvish /root/.config/elvish /root/.config/elvish
COPY --from=ghcr.io/carapace-sh/shell-fish /root/.config/fish /root/.config/fish
COPY --from=ghcr.io/carapace-sh/shell-nushell /usr/local/bin/nu /usr/local/bin/nu
COPY --from=ghcr.io/carapace-sh/shell-nushell /root/.config/nushell /root/.config/nushell
COPY --from=ghcr.io/carapace-sh/shell-oil /usr/local/bin/osh /usr/local/bin/osh
COPY --from=ghcr.io/carapace-sh/shell-oil /root/.config/oils /root/.config/oils
COPY --from=ghcr.io/carapace-sh/shell-powershell /opt/microsoft/ /opt/microsoft
COPY --from=ghcr.io/carapace-sh/shell-powershell /root/.config/powershell/ /root/.config/powershell
RUN ln -s /opt/microsoft/powershell/7/pwsh /usr/local/bin/pwsh
COPY --from=ghcr.io/carapace-sh/shell-xonsh /root/.config/xonsh /root/.config/xonsh
COPY --from=ghcr.io/carapace-sh/shell-zsh /root/.zshrc /root/.zshrc
CMD ["elvish"]