-
Notifications
You must be signed in to change notification settings - Fork 747
/
Dockerfile.shelloperator
49 lines (35 loc) · 1.9 KB
/
Dockerfile.shelloperator
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
FROM golang:1.17-alpine3.16
ARG appVersion=latest
RUN apk --no-cache add git ca-certificates && \
git clone --branch v1.0.0-beta.5 https://github.com/flant/shell-operator.git /go/src/github.com/flant/shell-operator
RUN go get -d github.com/flant/shell-operator/...
WORKDIR /go/src/github.com/flant/shell-operator
RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-s -w -X 'github.com/flant/shell-operator/pkg/app.Version=$appVersion'" -o shell-operator ./cmd/shell-operator
FROM python:3.10-alpine
ENV ARCH=amd64
RUN apk --no-cache add jq yq bash curl unzip openssl && \
apk --no-cache add gcc libffi-dev openssl-dev musl-dev && \
export CRYPTOGRAPHY_DONT_BUILD_RUST=1 && \
pip install --no-cache-dir ansible_runner==2.2.0 ansible==2.9.27 kubernetes --use-deprecated=legacy-resolver && \
apk del gcc libffi-dev openssl-dev musl-dev && \
if [[ $(arch) == aarch64* ]]; then ARCH=arm64; fi && \
wget https://get.helm.sh/helm-v3.9.0-linux-${ARCH}.tar.gz && \
tar -zxf helm-v3.9.0-linux-${ARCH}.tar.gz && \
mv linux-${ARCH}/helm /bin/helm && \
rm -rf *linux-${ARCH}* && \
chmod +x /bin/helm && \
wget https://storage.googleapis.com/kubernetes-release/release/v1.23.7/bin/linux/${ARCH}/kubectl -O /bin/kubectl && \
chmod +x /bin/kubectl && \
ln -s /bin/kubectl /usr/local/bin/kubectl && \
ln -s /bin/helm /usr/local/bin/helm && \
mkdir -p /hooks/kubesphere /kubesphere/installer/roles /kubesphere/results/env /kubesphere/playbooks /kubesphere/config &&\
adduser -D -g kubesphere -u 1002 kubesphere
COPY --from=0 /go/src/github.com/flant/shell-operator/shell-operator /
ADD controller/* /hooks/kubesphere/
RUN chown -R kubesphere:kubesphere /shell-operator && \
chown -R kubesphere:kubesphere /hooks && \
chown -R kubesphere:kubesphere /kubesphere && \
chmod +x -R /hooks/kubesphere
ENV SHELL_OPERATOR_WORKING_DIR /hooks
ENTRYPOINT ["/shell-operator"]
CMD ["start"]