Skip to content

Commit

Permalink
change entry point in dockerfiles to bootstrap
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Vlasic committed Aug 3, 2021
1 parent 48862ef commit 25c29c6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions functions/deploy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2
&& unzip awscliv2.zip \
&& ./aws/install

COPY deploy /var/task/
CMD [ "deploy" ]
COPY bootstrap /var/task/
CMD [ "bootstrap" ]
4 changes: 2 additions & 2 deletions functions/destroy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2
&& unzip awscliv2.zip \
&& ./aws/install

COPY destroy /var/task/
CMD [ "destroy" ]
COPY bootstrap /var/task/
CMD [ "bootstrap" ]

0 comments on commit 25c29c6

Please sign in to comment.