mirror of
https://github.com/luzifer-docker/clasp.git
synced 2024-12-20 22:51:17 +00:00
11 lines
125 B
Text
11 lines
125 B
Text
|
FROM node:10
|
||
|
|
||
|
RUN set -ex \
|
||
|
&& npm install -g @google/clasp
|
||
|
|
||
|
USER node
|
||
|
|
||
|
VOLUME ["/home/node/.config"]
|
||
|
|
||
|
ENTRYPOINT ["clasp"]
|