File tree 1 file changed +6
-5
lines changed
1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -16,10 +16,11 @@ RUN pip3 install -r ${USER_CODE_PATH}/requirements.txt
16
16
ENV PYTHONPATH="${PYTHONPATH}:${MAGE_CODE_PATH}/${PROJECT_NAME}"
17
17
18
18
# Installing necessary utilities and Terraform.
19
- RUN apt-get update && \
20
- apt-get install -y wget unzip && \
21
- wget https://releases.hashicorp.com/terraform/1.8.3/terraform_1.8.3_linux_amd64.zip && \
22
- unzip terraform_1.8.3_linux_amd64.zip -d /usr/local/bin/ && \
23
- rm terraform_1.8.3_linux_amd64.zip
19
+ # Uncomment the following lines if you want to use Terraform in Docker.
20
+ # RUN apt-get update && \
21
+ # apt-get install -y wget unzip && \
22
+ # wget https://releases.hashicorp.com/terraform/1.8.3/terraform_1.8.3_linux_amd64.zip && \
23
+ # unzip terraform_1.8.3_linux_amd64.zip -d /usr/local/bin/ && \
24
+ # rm terraform_1.8.3_linux_amd64.zip
24
25
25
26
CMD ["/bin/sh" , "-c" , "/app/run_app.sh" ]
You can’t perform that action at this time.
0 commit comments