Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fec778 commit b4aaf50Copy full SHA for b4aaf50
Dockerfile
@@ -0,0 +1,13 @@
1
+FROM google/cloud-sdk:slim
2
+
3
+LABEL "Author"="Andrew Kemp <[email protected]>"
4
+LABEL "Version"="1.0"
5
6
+## Install Node 8.9.x
7
+RUN curl -sL https://deb.nodesource.com/setup_8.x | bash -
8
+RUN apt-get install -y nodejs
9
10
11
+## Install gCloud SQL Proxy
12
+ADD https://dl.google.com/cloudsql/cloud_sql_proxy.linux.amd64 /usr/local/bin/cloud_sql_proxy
13
+RUN chmod +x /usr/local/bin/cloud_sql_proxy
0 commit comments