...

Text file src/github.com/prometheus/alertmanager/ui/Dockerfile

Documentation: github.com/prometheus/alertmanager/ui

     1# elm-format only works with buster variants of the NodeJS container image.
     2# See https://github.com/avh4/elm-format/issues/709 for more details.
     3FROM node:14-buster
     4
     5ENV NPM_CONFIG_PREFIX=/home/node/.npm-global
     6ENV PATH=$PATH:/home/node/.npm-global/bin
     7
     8RUN mkdir -p $NPM_CONFIG_PREFIX; yarn global add \
     9  elm@0.19.1 \
    10  elm-format@0.8.5 \
    11  elm-test@0.19.1-revision6 \
    12  uglify-js@3.13.4 \
    13  elm-review@2.5.0

View as plain text