Skip to content
This repository has been archived by the owner on Jul 28, 2023. It is now read-only.

Commit

Permalink
Fixed the CLI_VERSION variable references in Dockerfile (#17)
Browse files Browse the repository at this point in the history
* Initial code drop

* Added readme and .travis.yml

* Made docker org an env var.

* added a deploy phase

* Adjusted deploy phase

* Fixed CLI_VERSION variable
  • Loading branch information
chilanti authored and neeraj-laad committed Sep 5, 2019
1 parent 6acaf5a commit 17bc5db
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ RUN apt-get update && \
apt-get -y install sudo jq wget

ARG CLI_VERSION
RUN wget https://github.com/appsody/appsody/releases/download/$CLI_VERSION/appsody_$CLI_VERSION_amd64.deb
RUN apt install -f ./appsody_$CLI_VERSION_amd64.deb
RUN wget https://github.com/appsody/appsody/releases/download/$CLI_VERSION/appsody_${CLI_VERSION}_amd64.deb
RUN apt install -f ./appsody_${CLI_VERSION}_amd64.deb

COPY setupAndRunExtract.sh .
RUN chmod +x setupAndRunExtract.sh
RUN chmod +x setupAndRunExtract.sh

0 comments on commit 17bc5db

Please sign in to comment.