Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM debian:bookworm-slim AS base

RUN apt-get update && apt-get install -y curl

ARG version=1.24.2
ARG version=1.26.0
RUN curl -L "https://github.com/starship/starship/releases/download/v${version}/starship-x86_64-unknown-linux-gnu.tar.gz" | tar -xvz starship \
&& mv starship /usr/local/bin/

Expand Down
2 changes: 1 addition & 1 deletion dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ RUN apt-get update && apt-get install -y fish git libicu72 xonsh zsh

RUN git config --system safe.directory '*'

RUN curl -L https://go.dev/dl/go1.26.1.linux-amd64.tar.gz | tar -C /usr/local -xzf -
RUN curl -L https://go.dev/dl/go1.26.5.linux-amd64.tar.gz | tar -C /usr/local -xzf -
ENV PATH=$PATH:/usr/local/go/bin

COPY --from=ghcr.io/carapace-sh/shell-cmd /usr/local/bin/cmd /usr/local/bin/cmd
Expand Down
2 changes: 1 addition & 1 deletion shell-nushell/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM ghcr.io/carapace-sh/base
ARG version=0.111.0
ARG version=0.114.1

RUN curl -L https://github.com/nushell/nushell/releases/download/${version}/nu-${version}-x86_64-unknown-linux-gnu.tar.gz | tar -xvz \
&& mv nu-${version}-x86_64-unknown-linux-gnu/nu /usr/local/bin
Expand Down
2 changes: 1 addition & 1 deletion shell-powershell/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM ghcr.io/carapace-sh/base
ARG version=7.5.4
ARG version=7.6.3
ARG build=1

RUN apt-get update && apt-get install -y libicu72
Expand Down
2 changes: 1 addition & 1 deletion vhs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ghcr.io/carapace-sh/dev

RUN apt-get update && apt-get install -y chromium ffmpeg fonts-jetbrains-mono
RUN apt-get update && apt-get install -y chromium-headless-shell ffmpeg fonts-jetbrains-mono

RUN curl -L https://github.com/tsl0922/ttyd/releases/download/1.7.7/ttyd.x86_64 > /usr/local/bin/ttyd \
&& chmod +x /usr/local/bin/ttyd
Expand Down