Skip to content

Commit 58225e9

Browse files
[td] Comment out Terraform in Dockerfile
1 parent 3a9423a commit 58225e9

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

Dockerfile

+6-5
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,11 @@ RUN pip3 install -r ${USER_CODE_PATH}/requirements.txt
1616
ENV PYTHONPATH="${PYTHONPATH}:${MAGE_CODE_PATH}/${PROJECT_NAME}"
1717

1818
# 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
2425

2526
CMD ["/bin/sh", "-c", "/app/run_app.sh"]

0 commit comments

Comments
 (0)