Skip to content

Commit

Permalink
Update node and kubectl versions for the builder image
Browse files Browse the repository at this point in the history
  • Loading branch information
spadgett committed Dec 18, 2019
1 parent 503e297 commit ebcc26b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM quay.io/coreos/tectonic-console-builder:v17 AS build
FROM quay.io/coreos/tectonic-console-builder:v18 AS build

RUN mkdir -p /go/src/github.com/openshift/console/
ADD . /go/src/github.com/openshift/console/
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.builder
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN go get -u github.com/golang/lint/golint
RUN go get github.com/jstemmer/go-junit-report

### Install NodeJS and yarn
ENV NODE_VERSION="v10.3.0"
ENV NODE_VERSION="v10.17.0"
ENV YARN_VERSION="v1.7.0"

# yarn needs a home writable by any user running the container
Expand All @@ -23,7 +23,7 @@ RUN apt-get update \
&& apt-get install --no-install-recommends -y -q \
curl wget git unzip bzip2 jq

RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.8.2/bin/linux/amd64/kubectl && \
RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v1.17.0/bin/linux/amd64/kubectl && \
chmod +x ./kubectl && \
mv ./kubectl /usr/local/bin/kubectl

Expand Down
2 changes: 1 addition & 1 deletion builder-run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ set -e
# Without env vars:
# ./builder-run.sh ./my-script --my-script-arg1 --my-script-arg2

BUILDER_IMAGE="quay.io/coreos/tectonic-console-builder:v17"
BUILDER_IMAGE="quay.io/coreos/tectonic-console-builder:v18"

# forward whitelisted env variables to docker
ENV_STR=""
Expand Down

0 comments on commit ebcc26b

Please sign in to comment.