Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Qiu Yu committed Apr 17, 2015
0 parents commit 7452df7
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
FROM jpetazzo/dind:latest
MAINTAINER Qiu Yu <unicell@gmail.com>

ENV LOG file

RUN apt-get update -q
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections

# fix: `stdin: is not a tty` message
RUN sed -i 's/^mesg n$/tty -s \&\& mesg n/g' /root/.profile
RUN apt-get install -y make

RUN curl -sSL https://golang.org/dl/go1.3.3.linux-amd64.tar.gz | tar -v -C $HOME -xz
ENV GOROOT ~/go
ENV GOPATH ~/gocode
ENV PATH $PATH:$GOROOT/bin:$GOPATH/bin
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Docker-in-Docker with Golang installed

This is a Drone test image with Docker-in-Docker and Golang ready

0 comments on commit 7452df7

Please sign in to comment.