generated from meshery/meshery-istio
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Dockerfile
33 lines (30 loc) · 1.35 KB
/
Dockerfile
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
FROM golang:1.17 as bd
ARG VERSION
ARG GIT_COMMITSHA
RUN adduser --disabled-login --gecos "" appuser
WORKDIR /github.com/layer5io/meshery-cpx
ADD . .
RUN GOPROXY=https://proxy.golang.org,direct CGO_ENABLED=0 GOOS=linux GOARCH=amd64 GO111MODULE=on go build -ldflags="-w -s -X main.version=$VERSION -X main.gitsha=$GIT_COMMITSHA" -a -o /meshery-cpx .
RUN find . -name "*.go" -type f -delete; mv cpx /
RUN wget -O /istio-1.3.0.tar.gz https://github.com/istio/istio/releases/download/1.3.0/istio-1.3.0-linux.tar.gz
RUN wget -O /citrix-istio-adaptor-1.1.0-beta.tar.gz https://github.com/citrix/citrix-istio-adaptor/archive/v1.1.0-beta.tar.gz
FROM alpine
# Install kubectl
ADD https://storage.googleapis.com/kubernetes-release/release/v1.16.0/bin/linux/amd64/kubectl /usr/local/bin/kubectl
RUN apk --update add openssl && \
rm -rf /var/cache/apk/*
RUN set -x && \
apk --update add --no-cache curl ca-certificates && \
chmod +x /usr/local/bin/kubectl && \
kubectl version --client
RUN mkdir /lib64 && ln -s /lib/libc.musl-x86_64.so.1 /lib64/ld-linux-x86-64.so.2
COPY --from=bd /meshery-cpx /app/
COPY --from=bd /cpx /app/cpx
COPY --from=bd /etc/passwd /etc/passwd
ENV ISTIO_VERSION=1.3.0
ENV CIA_VERSION=v1.1.0-beta
COPY scripts /home/appuser/scripts
RUN mkdir -p /home/appuser/configdir; chown -R appuser /home/appuser/
USER appuser
WORKDIR /app
CMD ./meshery-cpx