This repository has been archived by the owner on Jul 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
AWS APPLY TERRAFORM Docker implementation (#280)
* Changes in the repository URL input Signed-off-by: eduardorcury <eduardoribeirocury@gmail.com> * Update README.md Signed-off-by: eduardorcury <eduardoribeirocury@gmail.com> * Change on label for repository input Signed-off-by: eduardorcury <eduardoribeirocury@gmail.com> * Correcting premisses of README.md Signed-off-by: eduardorcury <eduardoribeirocury@gmail.com> * Creating Dockerfile Signed-off-by: eduardorcury <eduardoribeirocury@gmail.com> * Adding Docker implementation to Makefile/metadata.json Signed-off-by: eduardorcury <eduardoribeirocury@gmail.com> * Update README.md Signed-off-by: eduardorcury <eduardoribeirocury@gmail.com>
- Loading branch information
1 parent
46272c7
commit 31434c5
Showing
4 changed files
with
24 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
FROM alpine:3.12 | ||
USER root | ||
|
||
RUN wget https://releases.hashicorp.com/terraform/0.13.4/terraform_0.13.4_linux_amd64.zip | ||
RUN unzip terraform_0.13.4_linux_amd64.zip | ||
RUN mv terraform /usr/local/bin/ | ||
|
||
RUN mkdir /rit | ||
COPY . /rit | ||
RUN sed -i 's/\r//g' /rit/set_umask.sh | ||
RUN sed -i 's/\r//g' /rit/run.sh | ||
RUN chmod +x /rit/set_umask.sh | ||
|
||
WORKDIR /app | ||
ENTRYPOINT ["/rit/set_umask.sh"] | ||
CMD ["/rit/run.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
{ | ||
"execution": [ | ||
"local" | ||
"local", | ||
"docker" | ||
], | ||
"os": { | ||
"deps": [], | ||
|