forked from influxdata/kapacitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile_build_ubuntu32
41 lines (33 loc) · 1002 Bytes
/
Dockerfile_build_ubuntu32
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
FROM 32bit/ubuntu:14.04
# This dockerfile capabable of the the minumum required
# to run the tests and nothing else.
MAINTAINER [email protected]
RUN apt-get update && apt-get install -y \
wget \
git \
mercurial \
build-essential \
autoconf \
automake \
libtool \
python-setuptools \
zip \
curl
# Install protobuf3
ADD install-deps.sh /tmp/
RUN INSTALL_PREFIX=/usr /tmp/install-deps.sh
RUN rm /tmp/install-deps.sh
# Install go
ENV GOPATH /root/go
ENV GO_VERSION 1.6.2
ENV GO_ARCH 386
RUN wget https://storage.googleapis.com/golang/go${GO_VERSION}.linux-${GO_ARCH}.tar.gz; \
tar -C /usr/local/ -xf /go${GO_VERSION}.linux-${GO_ARCH}.tar.gz ; \
rm /go${GO_VERSION}.linux-${GO_ARCH}.tar.gz
ENV PATH /usr/local/go/bin:$PATH
ENV PROJECT_DIR $GOPATH/src/github.com/influxdata/kapacitor
ENV PATH $GOPATH/bin:$PATH
RUN mkdir -p $PROJECT_DIR
WORKDIR $PROJECT_DIR
VOLUME $PROJECT_DIR
ENTRYPOINT [ "/root/go/src/github.com/influxdata/kapacitor/build.py" ]