Skip to content

Commit

Permalink
chore(kustomize): add git and openssh clients
Browse files Browse the repository at this point in the history
  • Loading branch information
rojopolis committed May 26, 2020
1 parent 5c6d37e commit 9c52e32
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.java8
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ COPY halconfig/packer /opt/rosco/config/packer

WORKDIR /packer

RUN apk --no-cache add --update bash wget curl openssl openjdk8-jre && \
RUN apk --no-cache add --update bash wget curl openssl openjdk8-jre git openssh-client && \
wget https://releases.hashicorp.com/packer/1.4.5/packer_1.4.5_linux_amd64.zip && \
unzip packer_1.4.5_linux_amd64.zip && \
rm packer_1.4.5_linux_amd64.zip
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.slim
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ COPY halconfig/packer /opt/rosco/config/packer

WORKDIR /packer

RUN apk --no-cache add --update bash wget curl openssl openjdk11-jre && \
RUN apk --no-cache add --update bash wget curl openssl openjdk11-jre git openssh-client && \
wget https://releases.hashicorp.com/packer/1.4.5/packer_1.4.5_linux_amd64.zip && \
unzip packer_1.4.5_linux_amd64.zip && \
rm packer_1.4.5_linux_amd64.zip
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ COPY halconfig/packer /opt/rosco/config/packer

WORKDIR /packer

RUN apt-get update && apt-get -y install openjdk-11-jre-headless wget unzip curl && \
RUN apt-get update && apt-get -y install openjdk-11-jre-headless wget unzip curl git openssh-client && \
wget https://releases.hashicorp.com/packer/1.4.5/packer_1.4.5_linux_amd64.zip && \
unzip packer_1.4.5_linux_amd64.zip && \
rm packer_1.4.5_linux_amd64.zip
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.ubuntu-java8
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ COPY halconfig/packer /opt/rosco/config/packer

WORKDIR /packer

RUN apt-get update && apt-get -y install openjdk-8-jre-headless wget unzip curl && \
RUN apt-get update && apt-get -y install openjdk-8-jre-headless wget unzip curl git openssh-client && \
wget https://releases.hashicorp.com/packer/1.4.5/packer_1.4.5_linux_amd64.zip && \
unzip packer_1.4.5_linux_amd64.zip && \
rm packer_1.4.5_linux_amd64.zip
Expand Down

0 comments on commit 9c52e32

Please sign in to comment.