Skip to content

Commit

Permalink
add helm and envsubst
Browse files Browse the repository at this point in the history
  • Loading branch information
elasticroentgen committed Aug 29, 2024
1 parent cca57e4 commit a4e770a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM debian:12-slim
ARG TARGETPLATFORM
RUN apt update && apt install python3-pip python3 pipx git curl zsh dialog jq yq fzf exa neovim locales -y
RUN apt update && apt install python3-pip python3 pipx git curl zsh dialog jq yq fzf exa neovim locales gettext-base -y
COPY locale.gen /etc/locale.gen
RUN locale-gen
RUN pipx install --include-deps ansible
Expand Down Expand Up @@ -28,6 +28,10 @@ RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \
echo "Unknown platform"; \
fi

# Helm

RUN curl -fsSL -o /tmp/get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 && chmod +x /tmp/get_helm.sh && /tmp/get_helm.sh

# OhMyZsh
RUN /bin/zsh -c 'sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"'
RUN git clone https://github.com/Aloxaf/fzf-tab /root/.oh-my-zsh/custom/plugins/fzf-tab
Expand Down

0 comments on commit a4e770a

Please sign in to comment.