You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM mhart/alpine-node:6.2.0
|
|
RUN apk --update add git nodejs \
|
|
&& rm -rf /var/cache/apk/* \
|
|
&& npm install -g bower && \
|
|
echo '{ "allow_root": true }' > /root/.bowerrc
|
|
WORKDIR /opt/app
|
|
CMD ['bower', 'install']
|
|
|