Skip to content

Commit

Permalink
fixed curl missing error
Browse files Browse the repository at this point in the history
  • Loading branch information
fragolinux committed Mar 4, 2021
1 parent a9ae4e0 commit b01cf96
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,11 @@ RUN apt-get update && \
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys CC86BB64 && \
rm -rf /var/lib/apt/lists/*

RUN DEBIAN_FRONTEND=noninteractive apt-get install -y curl && \
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y curl && \
curl https://baltocdn.com/helm/signing.asc | apt-key add - && \
apt-get install apt-transport-https --yes && \
echo "deb https://baltocdn.com/helm/stable/debian/ all main" | tee /etc/apt/sources.list.d/helm-stable-debian.list
echo "deb https://baltocdn.com/helm/stable/debian/ all main" | tee /etc/apt/sources.list.d/helm-stable-debian.list && \
rm -rf /var/lib/apt/lists/*

RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
git \
Expand Down

0 comments on commit b01cf96

Please sign in to comment.