Last active
June 26, 2019 00:08
-
-
Save chaseholdren/fc73ea34e2bbbaf20b3c27e9336b6148 to your computer and use it in GitHub Desktop.
Create Firebase CLI container in your cloud workspace.
This file contains hidden or 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
steps: | |
- name: 'gcr.io/cloud-builders/docker' | |
args: [ 'build', '-t', 'gcr.io/$PROJECT_ID/firebase', '.' ] | |
images: | |
- 'gcr.io/$PROJECT_ID/firebase' |
This file contains hidden or 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
# use latest Node LTS | |
FROM node:lts | |
# install Firebase CLI | |
RUN npm install -g firebase-tools | |
ENTRYPOINT ["/usr/local/bin/firebase"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment