mirror of
https://github.com/Oxalide/vsphere-influxdb-go.git
synced 2023-10-10 13:36:51 +02:00
13 lines
502 B
Plaintext
13 lines
502 B
Plaintext
|
FROM 32bit/ubuntu:14.04
|
||
|
|
||
|
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y python-software-properties software-properties-common git
|
||
|
RUN add-apt-repository ppa:evarlast/golang1.4
|
||
|
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y -o Dpkg::Options::="--force-overwrite" golang-go
|
||
|
|
||
|
ENV GOPATH=/root/go
|
||
|
RUN mkdir -p /root/go/src/github.com/influxdata/influxdb
|
||
|
RUN mkdir -p /tmp/artifacts
|
||
|
|
||
|
VOLUME /root/go/src/github.com/influxdata/influxdb
|
||
|
VOLUME /tmp/artifacts
|