A node based docker image with firebase command line tools. It's basically designed to be used in CI systems like Jenkins.
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
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
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
Content type
Image
Digest
Size
79.1 MB
Last updated
over 6 years ago
docker pull sharpmind/firebase-cli