forked from signalfx/signalfx-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile.dev
91 lines (75 loc) · 3 KB
/
Dockerfile.dev
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
####### Dev Image ########
# Note: Run `make dev-image` from the root directory of the repo.
#
# This is an image to facilitate development of the agent. It installs all of
# the build tools for building collectd and the go agent, along with some other
# useful utilities. The agent image is copied from the final-image stage to
# the /bundle dir in here and the SIGNALFX_BUNDLE_DIR is set to point to that.
FROM ubuntu:18.04
RUN apt update &&\
apt install -y \
build-essential \
curl \
git \
inotify-tools \
iproute2 \
jq \
net-tools \
python3.8 \
python3.8-dev \
python3.8-distutils \
socat \
sudo \
vim \
wget
ENV PATH=$PATH:/usr/local/go/bin:/go/bin GOPATH=/go
ENV SIGNALFX_BUNDLE_DIR=/bundle \
TEST_SERVICES_DIR=/usr/src/signalfx-agent/test-services \
AGENT_BIN=/usr/src/signalfx-agent/signalfx-agent \
PYTHONPATH=/usr/src/signalfx-agent/python \
AGENT_VERSION=latest \
BUILD_TIME=2017-01-25T13:17:17-0500 \
GOOS=linux \
LC_ALL=C.UTF-8 \
LANG=C.UTF-8
RUN rm -f /usr/bin/python3 && \
ln -s /usr/bin/python3.8 /usr/bin/python && \
ln -s /usr/bin/python3.8 /usr/bin/python3
RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \
python get-pip.py pip==20.0.2 && \
rm get-pip.py
RUN curl -fsSL get.docker.com -o /tmp/get-docker.sh &&\
sh /tmp/get-docker.sh
ARG TARGET_ARCH=amd64
RUN wget -O /usr/bin/gomplate https://github.com/hairyhenderson/gomplate/releases/download/v3.4.0/gomplate_linux-${TARGET_ARCH} &&\
chmod +x /usr/bin/gomplate
# Install helm
ARG HELM_VERSION=v3.0.0
WORKDIR /tmp
RUN wget -O helm.tar.gz https://get.helm.sh/helm-${HELM_VERSION}-linux-${TARGET_ARCH}.tar.gz && \
tar -zxvf /tmp/helm.tar.gz && \
mv linux-${TARGET_ARCH}/helm /usr/local/bin/helm && \
chmod a+x /usr/local/bin/helm
# Install kubectl
ARG KUBECTL_VERSION=v1.14.1
RUN cd /tmp &&\
curl -LO https://storage.googleapis.com/kubernetes-release/release/${KUBECTL_VERSION}/bin/linux/${TARGET_ARCH}/kubectl &&\
chmod +x ./kubectl &&\
mv ./kubectl /usr/bin/kubectl
# Get integration test deps in here
RUN pip3 install ipython ipdb
COPY tests/requirements.txt /tmp/
RUN pip3 install -r /tmp/requirements.txt
RUN ln -s /usr/bin/pip3 /usr/bin/pip
WORKDIR /usr/src/signalfx-agent
COPY --from=signalfx-agent-dev-cache:stage-final-image /bin/signalfx-agent ./signalfx-agent
COPY --from=signalfx-agent-dev-cache:stage-final-image / /bundle/
RUN /bundle/bin/patch-interpreter /bundle
COPY --from=signalfx-agent-dev-cache:stage-agent-builder /usr/local/go /usr/local/go
COPY --from=signalfx-agent-dev-cache:stage-agent-builder /go $GOPATH
RUN go install golang.org/x/lint/golint@latest &&\
if [ `uname -m` != "aarch64" ]; then go install github.com/go-delve/delve/cmd/dlv@latest; fi &&\
go install github.com/tebeka/go2xunit@latest &&\
curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.23.8
COPY ./ ./
CMD ["/bin/bash"]