2022-04-13 13:48:54 +02:00
|
|
|
# Git: git version 2.30.2
|
2022-06-30 01:36:24 +02:00
|
|
|
# /etc/os-release: Alpine Linux v3.16
|
|
|
|
# Kernel: Linux ca3abedc4fb1 5.17.15-76051715-generic #202206141358~1655919116~22.04~1db9e34 SMP PREEMPT Wed Jun 22 19 x86_64 Linux
|
2022-06-21 12:28:31 +02:00
|
|
|
# Build cmd: docker build --no-cache . -t nushell-latest
|
2022-06-30 01:36:24 +02:00
|
|
|
# Other tags: nushell/alpine-nu:latest, nushell
|
|
|
|
FROM alpine
|
2022-04-13 13:48:54 +02:00
|
|
|
|
|
|
|
LABEL maintainer=nushell
|
|
|
|
|
2022-06-30 01:36:24 +02:00
|
|
|
RUN echo '/usr/bin/nu' >> /etc/shells \
|
|
|
|
&& adduser -D -s /usr/bin/nu nushell \
|
|
|
|
&& mkdir -p /home/nushell/.config/nushell/ \
|
2022-08-01 03:44:33 +02:00
|
|
|
&& wget -q https://raw.githubusercontent.com/nushell/nushell/main/crates/nu-utils/src/sample_config/default_config.nu -O /home/nushell/.config/nushell/config.nu \
|
|
|
|
&& wget -q https://raw.githubusercontent.com/nushell/nushell/main/crates/nu-utils/src/sample_config/default_env.nu -O /home/nushell/.config/nushell/env.nu \
|
2022-06-30 01:36:24 +02:00
|
|
|
&& cd /tmp \
|
|
|
|
&& wget -qO - https://api.github.com/repos/nushell/nushell/releases/latest \
|
2023-11-08 13:30:34 +01:00
|
|
|
| grep browser_download_url \
|
|
|
|
| grep musl.tar.gz \
|
|
|
|
| cut -f4 -d '"' \
|
|
|
|
| xargs -I{} wget {} \
|
2022-06-30 01:36:24 +02:00
|
|
|
&& tar -xzf nu* \
|
2022-12-10 16:22:23 +01:00
|
|
|
&& cd nu*-musl \
|
2023-06-28 20:04:32 +02:00
|
|
|
&& mv nu* /usr/bin \
|
2022-12-10 16:22:23 +01:00
|
|
|
&& chmod +x /usr/bin/nu \
|
2022-06-30 01:36:24 +02:00
|
|
|
&& chown -R nushell:nushell /home/nushell/.config/nushell \
|
2023-06-28 20:04:32 +02:00
|
|
|
&& ls /usr/bin/nu_plugin* \
|
2024-07-05 14:16:50 +02:00
|
|
|
| xargs -I{} su -c 'plugin add {}' nushell \
|
2022-06-30 01:36:24 +02:00
|
|
|
&& rm -rf /tmp/*
|
2022-04-13 13:48:54 +02:00
|
|
|
|
2022-06-30 01:36:24 +02:00
|
|
|
USER nushell
|
|
|
|
|
|
|
|
WORKDIR /home/nushell
|
|
|
|
|
|
|
|
ENTRYPOINT ["nu"]
|