File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed
Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -3,10 +3,18 @@ FROM deis/go-dev
33RUN apt-get update
44
55# Ruby
6- RUN apt-get install hugo ruby ruby-dev ruby-bundler curl apt-utils -y
6+ RUN apt-get install ruby ruby-dev ruby-bundler curl apt-utils -y
77RUN gem install sass --no-user-install
88RUN gem install mime-types:2.0 rake cucumber capybara selenium-webdriver rspec browserstack-local parallel_tests
99
10+ # Hugo - October 2017 build
11+ ENV HUGO_VERSION=0.30.2
12+ ADD https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_VERSION}_Linux-64bit.tar.gz /tmp
13+ RUN tar -xf /tmp/hugo_${HUGO_VERSION}_Linux-64bit.tar.gz -C /tmp \
14+ && mkdir -p /usr/local/sbin \
15+ && mv /tmp/hugo /usr/local/sbin/hugo \
16+ && rm -rf /tmp/hugo_${HUGO_VERSION}_linux_amd64
17+
1018# Node.JS
1119RUN curl -sL https://deb.nodesource.com/setup_6.x | bash
1220RUN apt-get install nodejs -y
You can’t perform that action at this time.
0 commit comments