Skip to content

Commit

Permalink
chore(packer) - upgrade packer binary to 1.2.2 (#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
imosquera authored and Matt Duftler committed Apr 13, 2018
1 parent 49a3fda commit f86b041
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ RUN GRADLE_USER_HOME=cache ./gradlew buildDeb -x test && \
dpkg -i ./rosco-web/build/distributions/*.deb && \
mkdir /packer && \
cd /packer && \
wget https://releases.hashicorp.com/packer/1.1.0/packer_1.1.0_linux_amd64.zip && \
wget https://releases.hashicorp.com/packer/1.2.2/packer_1.2.2linux_amd64.zip && \
apt-get install unzip -y && \
unzip packer_1.1.0_linux_amd64.zip && \
unzip packer_1.2.2_linux_amd64.zip && \
rm -rf /workdir

ENV PATH "/packer:$PATH"
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile.slim
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ COPY ./rosco-web/config/packer /opt/rosco/config/packer
WORKDIR /packer

RUN apk --nocache add --update bash wget && \
wget https://releases.hashicorp.com/packer/1.1.1/packer_1.1.1_linux_amd64.zip && \
unzip packer_1.1.1_linux_amd64.zip && \
rm packer_1.1.1_linux_amd64.zip
wget https://releases.hashicorp.com/packer/1.2.2/packer_1.2.2_linux_amd64.zip && \
unzip packer_1.2.2_linux_amd64.zip && \
rm packer_1.2.2_linux_amd64.zip

ENV PATH "/packer:$PATH"

Expand Down

0 comments on commit f86b041

Please sign in to comment.