2015-08-18 03:27:43 +00:00
|
|
|
FROM 32bit/ubuntu:14.04
|
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y python-software-properties software-properties-common git
|
2015-11-11 23:48:37 +00:00
|
|
|
RUN add-apt-repository ppa:evarlast/golang1.4
|
2015-08-27 13:29:17 +00:00
|
|
|
RUN apt-get update && apt-get install -y -o Dpkg::Options::="--force-overwrite" golang-go
|
2015-08-18 03:27:43 +00:00
|
|
|
|
|
|
|
ENV GOPATH=/root/go
|
|
|
|
RUN mkdir -p /root/go/src/github.com/influxdb/influxdb
|
|
|
|
RUN mkdir -p /tmp/artifacts
|
|
|
|
|
|
|
|
VOLUME /root/go/src/github.com/influxdb/influxdb
|
|
|
|
VOLUME /tmp/artifacts
|