-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
79 lines (63 loc) · 2.54 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
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
ARG ALPINE_VERSION="3.20.2"
FROM docker.io/alpine:${ALPINE_VERSION}
ARG HELM_VERSION=3.13.2
ARG KUBECTL_VERSION=1.26.0
ARG TERRAFORM_VERSION=1.9.5
ARG TERRAGRUNT_VERSION=0.67.6
ARG AWSCLI_VERSION="2.15.57-r0"
ARG TFTOOLS_VERSION="v0.9.0"
ARG TFLINT_VERSION="0.51.1-r3"
ENV USERNAME="infratools"
ENV USER_UID=1000
ENV USER_GID=$USER_UID
ENV USER_HOME="/home/infratools"
ENV PYTHONUNBUFFERED=1
ENV PATH="${PATH}:${USER_HOME}/.local/bin"
# Debug (-x), exit on failure (-e) or variable not declared (-u)
RUN set -eux
# hadolint ignore=DL3018
# hadolint global ignore=DL3018,DL4006
# Set architecture
RUN case $(uname -m) in \
x86_64) ARCH=amd64; ;; \
armv7l) ARCH=arm; ;; \
aarch64) ARCH=arm64; ;; \
ppc64le) ARCH=ppc64le; ;; \
s390x) ARCH=s390x; ;; \
*) echo "un-supported arch, exit ..."; exit 1; ;; \
esac && \
echo "export ARCH=$ARCH" > /envfile && \
cat /envfile
# Core packages
RUN apk add --update --no-cache \
make ca-certificates zsh zsh-vcs jq zip shadow curl git vim bind-tools python3 py3-pip pipx kubectx \
openssl envsubst aws-cli=${AWSCLI_VERSION} docker-cli fzf bash fzf openssh-client-krb5 tflint=${TFLINT_VERSION} \
pre-commit
# Rootless user
RUN groupadd --gid $USER_GID $USERNAME ;\
useradd --uid $USER_UID --gid $USER_GID -m $USERNAME -s /bin/zsh
# Helm
RUN source /envfile && curl -sL https://get.helm.sh/helm-v${HELM_VERSION}-linux-${ARCH}.tar.gz | tar -xz ;\
mv linux-${ARCH}/helm /usr/bin/helm ;\
chmod +x /usr/bin/helm ;\
rm -rf linux-${ARCH}
# Kubectl
RUN source /envfile && curl -sL https://storage.googleapis.com/kubernetes-release/release/v${KUBECTL_VERSION}/bin/linux/${ARCH}/kubectl -o /usr/local/bin/kubectl && \
chmod +x /usr/local/bin/kubectl
# Terraform using tfenv
RUN git clone --depth=1 https://github.com/tfutils/tfenv.git $USER_HOME/.tfenv ;\
ln -s $USER_HOME/.tfenv/bin/* /usr/local/bin ;\
tfenv use ${TERRAFORM_VERSION} ;\
chown -R $USERNAME:$USERNAME $USER_HOME/.tfenv/
# Terragrunt
RUN source /envfile && curl -sL https://github.com/gruntwork-io/terragrunt/releases/download/v${TERRAGRUNT_VERSION}/terragrunt_linux_${ARCH} -o /usr/bin/terragrunt ;\
chmod +x /usr/bin/terragrunt
# Install tftools
RUN curl --proto '=https' --tlsv1.2 -sSfL https://raw.githubusercontent.com/containerscrew/tftools/main/scripts/install.sh | sh -s -- -v "$TFTOOLS_VERSION"
# User actions
USER $USERNAME
# Install oh my zsh
RUN sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
WORKDIR $USER_HOME
COPY .zshrc .zshrc
ENTRYPOINT ["/bin/zsh"]