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