Skip to content

Commit

Permalink
Fix packer init
Browse files Browse the repository at this point in the history
  • Loading branch information
myurasov committed Nov 22, 2023
1 parent 5c99b44 commit 1676bd0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,9 @@ RUN apt-get install -qy terraform
RUN apt-get install -yq packer

# init packer plugins
RUN (cd /app/src/packer/azure/isaac && packer init .)
RUN (cd /app/src/packer/aws/isaac && packer init .)
COPY . /tmp/app
RUN (cd /tmp/app/src/packer/azure/isaac && packer init .)
RUN (cd /tmp/app/src/packer/aws/isaac && packer init .)

# azure command line
RUN curl -sL https://aka.ms/InstallAzureCLIDeb | bash
Expand Down

0 comments on commit 1676bd0

Please sign in to comment.