# FROM alpine:latest AS download

# RUN apk --update add --no-cache \
#       curl \
#       jq && \
#     curl -L https://api.github.com/repos/<name>/<name>/releases/latest | \
#       jq -r '.assets[] | select(.name | contains("amd64")) | .browser_download_url' | \
#       xargs -I {} curl -L -o /tmp/<file> {}

FROM debian:11-slim

COPY --from=alpine/helm:latest /usr/bin/helm /usr/bin/helm

ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8

RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-recommends \
      # (curl) Dependency for Ansible 'kubernetes.core' collection
      curl \
      git \
      jq \
      locales \
      netcat-openbsd \
      openssh-client \
      # (python3-*) Dependency for installation of Ansible
      python3-pip && \
    sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \
    locale-gen && \
    pip3 install --upgrade pip && \
    pip3 install \
      ansible-core \
      # (jmespath) Dependency for Ansible 'json_query' filter
      jmespath \
      # (kubernetes) Dependency for Ansible 'kubernetes.core' collection
      kubernetes \
      # (netaddr) Dependency for Ansible 'ipaddr' filter
      netaddr \
      # (pyvmomi) Dependency for Ansible 'community.vmware' collection
      pyvmomi \
      # (pyyaml) Dependency for Ansible 'kubernetes.core' collection
      pyyaml \
      setuptools \
      wheel \
      yamllint && \
    rm -rf /var/lib/apt/lists/* && \
    rm -f /tmp/ovftool-installer

ENTRYPOINT []
CMD []