File tree 5 files changed +314
-312
lines changed
5 files changed +314
-312
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ RUN dnf check-update || true \
16
16
ENV GOROOT /usr/local/go
17
17
ENV GOPATH /gopath
18
18
ENV PATH ${GOPATH}/bin:${GOROOT}/bin:${PATH}
19
- ENV GO_VERSION 1.10.2
19
+ ENV GO_VERSION 1.10.3
20
20
ENV GO_DOWNLOAD_URL https://storage.googleapis.com/golang
21
21
RUN rm -rf ${GOROOT} \
22
22
&& curl -s ${GO_DOWNLOAD_URL}/go${GO_VERSION}.linux-amd64.tar.gz | tar -v -C /usr/local/ -xz \
@@ -42,19 +42,19 @@ RUN dnf install --assumeyes npm \
42
42
&& echo "Running nvm scripts..." \
43
43
&& source $NVM_DIR/nvm.sh \
44
44
&& nvm ls-remote \
45
- && nvm install v9.11.1 \
45
+ && nvm install v9.11.2 \
46
46
&& curl --silent --location https://dl.yarnpkg.com/rpm/yarn.repo | sudo tee /etc/yum.repos.d/yarn.repo \
47
47
&& dnf install yarn --assumeyes \
48
48
&& echo "Updating frontend dependencies..." \
49
49
&& rm -rf ./node_modules \
50
50
&& yarn install \
51
51
&& npm rebuild node-sass --force \
52
52
&& npm install \
53
- && nvm alias default 9.11.1 \
53
+ && nvm alias default 9.11.2 \
54
54
&& nvm alias default node \
55
55
&& which node \
56
56
&& node -v \
57
- && cp /usr/local/nvm/versions/node/v9.11.1 /bin/node /usr/bin/node \
57
+ && cp /usr/local/nvm/versions/node/v9.11.2 /bin/node /usr/bin/node \
58
58
&& popd
59
59
60
60
# Configure reverse proxy
You can’t perform that action at this time.
0 commit comments