We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c41807 commit 70c39cdCopy full SHA for 70c39cd
Dockerfile
@@ -1,7 +1,12 @@
1
-FROM node:9.2.0-alpine
+FROM golang:alpine as go
2
+
3
+RUN apk add --update ca-certificates git
4
+RUN go get github.com/github/hub
5
-RUN apk add --update git curl jq py-pip bash && pip install yq
6
+FROM node:9.2.0-alpine
7
8
+RUN apk add --update ca-certificates git curl jq py-pip bash && pip install yq
9
+COPY --from=go /go/bin/hub /usr/local/bin/hub
10
WORKDIR /cf-cli
11
12
COPY package.json /cf-cli
package.json
@@ -1,6 +1,6 @@
{
"name": "codefresh",
- "version": "0.18.1",
+ "version": "0.19.0",
"description": "Codefresh command line utility",
"main": "index.js",
"preferGlobal": true,
0 commit comments