Skip to content
This repository has been archived by the owner on Mar 31, 2022. It is now read-only.

Commit

Permalink
Dockerfile: Go 1.6; Docker 1.10.2; docker-compose 1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
viktorbenei committed Mar 11, 2016
1 parent e390ca9 commit 464d26d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ RUN gem install bundler --no-document

# install Go
# from official binary package
RUN wget -q https://storage.googleapis.com/golang/go1.5.2.linux-amd64.tar.gz -O go-bins.tar.gz
RUN wget -q https://storage.googleapis.com/golang/go1.6.linux-amd64.tar.gz -O go-bins.tar.gz
RUN tar -C /usr/local -xvzf go-bins.tar.gz
RUN rm go-bins.tar.gz
# ENV setup
Expand All @@ -83,12 +83,12 @@ RUN echo 'deb https://apt.dockerproject.org/repo ubuntu-trusty main' > /etc/apt/
RUN DEBIAN_FRONTEND=noninteractive apt-get update -qq
RUN DEBIAN_FRONTEND=noninteractive apt-get purge lxc-docker*
RUN DEBIAN_FRONTEND=noninteractive apt-cache policy docker-engine
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y linux-image-extra-3.19.0-33-generic
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y docker-engine=1.9.1-0~trusty
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y linux-image-extra-`uname -r`
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y docker-engine=1.10.2-0~trusty


# docker-compose
RUN curl -fL https://github.com/docker/compose/releases/download/1.5.2/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose
RUN curl -fL https://github.com/docker/compose/releases/download/1.6.2/docker-compose-`uname -s`-`uname -m` > /usr/local/bin/docker-compose
RUN chmod +x /usr/local/bin/docker-compose
RUN docker-compose --version

Expand Down

0 comments on commit 464d26d

Please sign in to comment.