Skip to content

Commit 6bcba79

Browse files
author
Arik Kfir
committed
Install Jinja2 dependency in Cloud SQL resource image.
This is required for SQL scripts post-processing (when enabled).
1 parent d4c203f commit 6bcba79

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

resources/Dockerfile.gcp_cloud_sql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
FROM infolinks/deployster-gcp:local
22
RUN curl -sSL -o "/usr/local/bin/cloud_sql_proxy" "https://dl.google.com/cloudsql/cloud_sql_proxy.linux.amd64" && \
33
chmod +x /usr/local/bin/cloud_sql_proxy && \
4-
yum install -y mariadb && yum clean all
4+
yum install -y mariadb && yum clean all && \
5+
pip3.6 --quiet --disable-pip-version-check --no-cache-dir install Jinja2
56
COPY src/dresources_util.py src/dresources.py src/external_services.py /deployster/lib/
67
COPY src/gcp_cloud_sql.py /deployster/lib/
78
RUN chmod +x /deployster/lib/gcp_cloud_sql.py

0 commit comments

Comments
 (0)