-
Notifications
You must be signed in to change notification settings - Fork 42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Refactor Makefile and Dockerfile #47
base: main
Are you sure you want to change the base?
Conversation
e3808b6
to
6bfd7c9
Compare
|
||
# Fetch docker cli to run a registry container for e2e tests | ||
RUN curl -Ls https://download.docker.com/linux/static/$DOCKERCLI_CHANNEL/x86_64/docker-$DOCKERCLI_VERSION.tgz | tar -xz | ||
|
||
# Fetch docker-app to build a CNAB from an application template | ||
RUN curl -Ls https://github.com/docker/app/releases/download/$DOCKER_APP_VERSION/docker-app-linux.tar.gz | tar -xz | ||
RUN git clone https://github.com/docker/app | ||
RUN curl -Ls https://github.com/docker/app/releases/download/$DOCKER_APP_VERSION/docker-app-linux.tar.gz | tar -xz && cp /go/docker-app-linux /usr/bin/docker-app |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should bump the version we use to the lastest release of Docker App. I see above that it's the cnab-preview one
@@ -0,0 +1,17 @@ | |||
ARG ALPINE_VERSION=3.8 | |||
ARG GO_VERSION=1.11.4 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These versions are quite old, would be good to bump them
Signed-off-by: Jean-Christophe Sirot <[email protected]>
Add Jenkinsfile