From a8394ce28617d5ac77789246cb1a7edf45dfb393 Mon Sep 17 00:00:00 2001 From: Ryan Date: Sun, 8 Nov 2015 17:11:56 +0100 Subject: [PATCH] copied ruby & node commands from official repositories --- Dockerfile | 62 ++++++++++++++++++++++++++++++++++- go-wrapper | 95 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 156 insertions(+), 1 deletion(-) create mode 100644 go-wrapper diff --git a/Dockerfile b/Dockerfile index 662fedf..c55f33d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,66 @@ FROM golang MAINTAINER Ryan Kes + +# Install Hugo RUN wget https://github.com/spf13/hugo/releases/download/v0.14/hugo_0.14_amd64.deb \ && dpkg -i hugo_0.14_amd64.deb \ && rm hugo_0.14_amd64.deb \ - && rm -rf /var/lib/apt/lists/* \ + && rm -rf /var/lib/apt/lists/* + +# Install npm +# verify gpg and sha256: http://nodejs.org/dist/v0.10.30/SHASUMS256.txt.asc +# gpg: aka "Timothy J Fontaine (Work) " +RUN gpg --keyserver pool.sks-keyservers.net --recv-keys 7937DFD2AB06298B2293C3187D33FF9D0246406D + +ENV NODE_VERSION 0.11.14 +ENV NPM_VERSION 2.1.18 + +RUN curl -SLO "http://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.gz" \ + && curl -SLO "http://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \ + && gpg --verify SHASUMS256.txt.asc \ + && grep " node-v$NODE_VERSION-linux-x64.tar.gz\$" SHASUMS256.txt.asc | sha256sum -c - \ + && tar -xzf "node-v$NODE_VERSION-linux-x64.tar.gz" -C /usr/local --strip-components=1 \ + && rm "node-v$NODE_VERSION-linux-x64.tar.gz" SHASUMS256.txt.asc \ + && npm install -g npm@"$NPM_VERSION" \ + && npm cache clear + +# Install Ruby & Bundler +ENV RUBY_MAJOR 2.2 +ENV RUBY_VERSION 2.2.3 +ENV RUBY_DOWNLOAD_SHA256 df795f2f99860745a416092a4004b016ccf77e8b82dec956b120f18bdc71edce +ENV RUBYGEMS_VERSION 2.5.0 + +# skip installing gem documentation +RUN echo 'install: --no-document\nupdate: --no-document' >> "$HOME/.gemrc" + +# some of ruby's build scripts are written in ruby +# we purge this later to make sure our final image uses what we just built +RUN apt-get update \ + && apt-get install -y bison libgdbm-dev ruby autoconf \ + && rm -rf /var/lib/apt/lists/* \ + && mkdir -p /usr/src/ruby \ + && curl -fSL -o ruby.tar.gz "http://cache.ruby-lang.org/pub/ruby/$RUBY_MAJOR/ruby-$RUBY_VERSION.tar.gz" \ + && echo "$RUBY_DOWNLOAD_SHA256 *ruby.tar.gz" | sha256sum -c - \ + && tar -xzf ruby.tar.gz -C /usr/src/ruby --strip-components=1 \ + && rm ruby.tar.gz \ + && cd /usr/src/ruby \ + && autoconf \ + && ./configure --disable-install-doc \ + && make -j"$(nproc)" \ + && make install \ + && apt-get purge -y --auto-remove bison libgdbm-dev ruby \ + && gem update --system $RUBYGEMS_VERSION \ + && rm -r /usr/src/ruby + +# install things globally, for great justice +ENV GEM_HOME /usr/local/bundle +ENV PATH $GEM_HOME/bin:$PATH + +ENV BUNDLER_VERSION 1.10.6 + +RUN gem install bundler --version "$BUNDLER_VERSION" \ + && bundle config --global path "$GEM_HOME" \ + && bundle config --global bin "$GEM_HOME/bin" + +# don't create ".bundle" in all our apps +ENV BUNDLE_APP_CONFIG $GEM_HOME \ No newline at end of file diff --git a/go-wrapper b/go-wrapper new file mode 100644 index 0000000..2799312 --- /dev/null +++ b/go-wrapper @@ -0,0 +1,95 @@ +#!/bin/bash +set -e + +usage() { + base="$(basename "$0")" + cat <&2 + exit 1 +fi + +goDir="$(go list -e -f '{{.ImportComment}}' 2>/dev/null || true)" + +if [ -z "$goDir" -a -s .godir ]; then + goDir="$(cat .godir)" +fi + +dir="$(pwd -P)" +if [ "$goDir" ]; then + goPath="${GOPATH%%:*}" # this just grabs the first path listed in GOPATH, if there are multiple (which is the detection logic "go get" itself uses, too) + goDirPath="$goPath/src/$goDir" + mkdir -p "$(dirname "$goDirPath")" + if [ ! -e "$goDirPath" ]; then + ln -sfv "$dir" "$goDirPath" + elif [ ! -L "$goDirPath" ]; then + echo >&2 "error: $goDirPath already exists but is unexpectedly not a symlink!" + exit 1 + fi + goBin="$goPath/bin/$(basename "$goDir")" +else + goBin="$(basename "$dir")" # likely "app" +fi + +case "$cmd" in + download) + execCommand=( go get -v -d "$@" ) + if [ "$goDir" ]; then execCommand+=( "$goDir" ); fi + set -x; exec "${execCommand[@]}" + ;; + + install) + execCommand=( go install -v "$@" ) + if [ "$goDir" ]; then execCommand+=( "$goDir" ); fi + set -x; exec "${execCommand[@]}" + ;; + + run) + set -x; exec "$goBin" "$@" + ;; + + *) + echo >&2 'error: unknown command:' "$cmd" + usage >&2 + exit 1 + ;; +esac \ No newline at end of file