mirror of
https://github.com/luzifer-docker/firebase-tools.git
synced 2024-12-20 17:51:17 +00:00
10 lines
129 B
Docker
10 lines
129 B
Docker
FROM node:10
|
|
|
|
RUN set -ex \
|
|
&& npm install -g firebase-tools
|
|
|
|
USER node
|
|
|
|
VOLUME ["/home/node/.config"]
|
|
|
|
ENTRYPOINT ["firebase"]
|