diff --git a/docker/Dockerfile b/docker/Dockerfile index e99dbe41ef..5b7a7fae4a 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,8 +1,8 @@ # Git: git version 2.30.2 # /etc/os-release: Debian: Debian GNU/Linux 11 (bullseye) # Kernel: Linux ec73d87a5aab 5.10.104-linuxkit #1 SMP Wed Mar 9 19:05:23 UTC 2022 x86_64 GNU/Linux -# Build cmd: docker build --no-cache . -t nushell-0.61 -# Other tags: nushell/debian-nu.0.61, nushell +# Build cmd: docker build --no-cache . -t nushell-latest +# Other tags: nushell/debian-nu:latest, nushell FROM debian:bullseye-slim LABEL maintainer=nushell @@ -14,15 +14,15 @@ RUN apt update \ # Make /bin/sh symlink to bash instead of dash: && echo "dash dash/sh boolean false" | debconf-set-selections \ && DEBIAN_FRONTEND=noninteractive dpkg-reconfigure dash \ - && cd /lib; curl -s https://api.github.com/repos/nushell/nushell/releases/latest | grep browser_download_url | cut -d '"' -f 4 | grep linux | aria2c -i - \ - && tar xvf nu_0*.tar.gz \ - && cd nu_0* && cp -aR nushell*/** /usr/local/bin/ \ + && cd /lib; curl -s https://api.github.com/repos/nushell/nushell/releases/latest | grep browser_download_url | cut -d '"' -f 4 | grep x86_64-unknown-linux-gnu | aria2c -i - \ + && mkdir nu-latest && tar xvf nu-*.tar.gz --directory=nu-latest \ + && cp -aR nu-latest/* /usr/local/bin/ \ # Setup default config file for nushell && mkdir -p /root/.config/nushell && cd /root/.config/nushell \ && aria2c https://raw.githubusercontent.com/nushell/nushell/main/docs/sample_config/default_env.nu -o env.nu \ && aria2c https://raw.githubusercontent.com/nushell/nushell/main/docs/sample_config/default_config.nu -o config.nu \ # Do some cleanup work - && cd /lib; rm -rf nu_0* nu-latest.tar.gz \ + && cd /lib; rm -rf nu-* \ && rm -rf /var/lib/apt/lists/* && apt autoremove -y \ && echo '/usr/local/bin/nu' >> /etc/shells \ # Add an nushell user and create home dir