-
Notifications
You must be signed in to change notification settings - Fork 704
/
Dockerfile.slim
36 lines (28 loc) · 1.23 KB
/
Dockerfile.slim
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
FROM python:3.7-alpine3.16
LABEL maintainer="[email protected]"
ARG TARGETARCH
ENV KUBECTL_RELEASE=1.15.10
ENV AWS_BINARY_RELEASE_DATE=2020-02-22
ENV AWS_CLI_VERSION=1.18.18
RUN apk --no-cache add --update \
bash \
curl \
openjdk17-jre \
openssl \
&& pip install --upgrade awscli==${AWS_CLI_VERSION} \
&& apk --purge del \
&& rm -rf /var/cache/apk
RUN echo '#!/usr/bin/env bash' > /usr/local/bin/hal && \
echo '/opt/halyard/bin/hal "$@"' >> /usr/local/bin/hal && \
chmod +x /usr/local/bin/hal
RUN curl -f -LO --retry 3 --retry-delay 3 https://storage.googleapis.com/kubernetes-release/release/v${KUBECTL_RELEASE}/bin/linux/${TARGETARCH}/kubectl && \
chmod +x ./kubectl && \
mv ./kubectl /usr/local/bin/kubectl
RUN curl -f -o /usr/local/bin/aws-iam-authenticator https://amazon-eks.s3-us-west-2.amazonaws.com/${KUBECTL_RELEASE}/${AWS_BINARY_RELEASE_DATE}/bin/linux/${TARGETARCH}/aws-iam-authenticator && \
chmod +x /usr/local/bin/aws-iam-authenticator
RUN addgroup -S -g 1000 spinnaker
RUN adduser -S -G spinnaker -u 1000 spinnaker
COPY halyard-web/build/install/halyard /opt/halyard
USER spinnaker
HEALTHCHECK CMD curl http://localhost:8064/health | grep UP || exit 1
CMD ["/opt/halyard/bin/halyard"]