forked from armory-io/halyard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile.ubi
50 lines (37 loc) · 1.62 KB
/
Dockerfile.ubi
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
FROM registry.redhat.io/ubi8/ubi
MAINTAINER [email protected]
### Atomic/OpenShift Labels - https://github.com/projectatomic/ContainerApplicationGenericLabels
LABEL name="halyard" \
maintainer="[email protected]" \
vendor="armory" \
summary="halyard" \
description="A tool for configuring, installing, and updating Spinnaker."
### add licenses
COPY LICENSE.txt /licenses/LICENSE.txt
COPY halyard-web/build/install/halyard /opt/halyard
ENV KUBECTL_RELEASE=1.15.10
ENV AWS_BINARY_RELEASE_DATE=2020-02-22
ENV AWS_CLI_VERSION=1.18.58
RUN yum update -y --disableplugin=subscription-manager \
&& yum install -y --disableplugin=subscription-manager \
python27 \
bash \
curl \
java-11-openjdk \
openssl \
&& pip2 install --upgrade awscli==${AWS_CLI_VERSION}
RUN 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/amd64/kubectl && \
chmod +x ./kubectl && \
mv ./kubectl /usr/local/bin/kubectl
RUN curl -f -o aws-iam-authenticator https://amazon-eks.s3-us-west-2.amazonaws.com/${KUBECTL_RELEASE}/${AWS_BINARY_RELEASE_DATE}/bin/linux/amd64/aws-iam-authenticator && \
chmod +x ./aws-iam-authenticator && \
mv ./aws-iam-authenticator /usr/local/bin/aws-iam-authenticator
ENV PATH "$PATH:/usr/local/bin/aws-iam-authenticator"
RUN groupadd -g 1000 spinnaker
RUN adduser -g spinnaker -u 1000 spinnaker
USER spinnaker
CMD ["/opt/halyard/bin/halyard"]