Skip to content

Commit

Permalink
feat: adding packer (1.11.2) (#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
venkatamutyala authored Sep 29, 2024
1 parent 4703a47 commit 6c36fd6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ ARG VERSION_HELM_DIFF=3.9.10
ARG VERSION_CHARM_GUM=0.14.5
ARG VERSION_ARGO_CD_CLI=2.10.17
ARG VERSION_K3D=5.7.4
ARG VERSION_HASHICORP_PACKER=1.11.2

# https://developer.hashicorp.com/vault/docs/commands#vault_skip_verify
# https://github.com/GlueOps/terraform-module-kubernetes-hashicorp-vault-configuration/wiki
Expand Down Expand Up @@ -89,6 +90,11 @@ RUN curl -Lo ./gum_${VERSION_CHARM_GUM}_Linux_x86_64.tar.gz https://github.com/c
RUN curl -sSL -o argocd-linux-amd64 https://github.com/argoproj/argo-cd/releases/download/v${VERSION_ARGO_CD_CLI}/argocd-linux-amd64 \
&& sudo install -m 555 argocd-linux-amd64 /usr/local/bin/argocd \
&& rm argocd-linux-amd64
RUN wget "https://releases.hashicorp.com/packer/${VERSION_HASHICORP_PACKER}/packer_${VERSION_HASHICORP_PACKER}_linux_amd64.zip" \
&& unzip packer_${VERSION_HASHICORP_PACKER}_linux_amd64.zip \
&& mv packer /usr/local/bin \
&& rm packer_${VERSION_HASHICORP_PACKER}_linux_amd64.zip \
&& rm LICENSE.txt

# Install code tunnel so we can run outside of github codespaces easily
RUN wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > packages.microsoft.gpg \
Expand Down

0 comments on commit 6c36fd6

Please sign in to comment.