Sign inSign up

sharpmind/firebase-cli

By sharpmind

Updated over 6 years ago

Image
0

192

sharpmind/firebase-cli repository overview

firebase-cli

Docker Image Size (tag) Docker Cloud Automated build Docker Cloud Build Status GitHub

A node based docker image with firebase command line tools. It's basically designed to be used in CI systems like Jenkins.

Usage

firebase

Execute the firebase tool and use as specied on the firebase documenation home page: https://firebase.google.com/docs/cli

docker run sharpmind/firebase-cli firebase --help
node / npm

As this image is based on node

FROM node::13-slim

node itself and npm are available as well. Node is the default command if no other command is specified.

docker run sharpmind/firebase-cli npm --help # running npm
docker run sharpmind/firebase-cli --help # running node
shell

You can drop into a shell if specified as command.

docker run -it sharpmind/firebase-cli /bin/bash
# 
# which firebase
/home/node/.npm-global/bin/firebase
# which node
/usr/local/bin/node
# which npm
/usr/local/bin/npm

License

MIT License

Tag summary

Content type

Image

Digest

Size

79.1 MB

Last updated

over 6 years ago

docker pull sharpmind/firebase-cli