Skip to content

Commit

Permalink
feat(ci): add helm binary support
Browse files Browse the repository at this point in the history
  • Loading branch information
HoKim98 committed Jul 30, 2024
1 parent d1f4d92 commit 9bcd184
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Dockerfile.server
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,22 @@ CMD [ "/bin/bash" ]

# Install dependencies
RUN apt-get update && apt-get install -y \
curl \
hwloc \
# Cleanup
&& apt-get clean all \
&& rm -rf /var/lib/apt/lists/*

# Install helm
ARG HELM_URL="https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3"
RUN apt-get update && apt-get install -y git \
&& curl "${HELM_URL}" | bash \
# Cleanup
&& apt-get remove -y git \
&& apt-get autoremove -y \
&& apt-get clean all \
&& rm -rf /var/lib/apt/lists/*

# Copy static files
ARG PACKAGE
ADD ./LICENSE /usr/share/licenses/${PACKAGE}/LICENSE
Expand Down

0 comments on commit 9bcd184

Please sign in to comment.