mirror of
https://github.com/prometheus/alertmanager
synced 2024-12-18 12:25:08 +00:00
194f1cfd7c
* Run elm-review from CI Signed-off-by: Andrey Kuzmin <unsoundscapes@gmail.com> * Use the jfmengels/elm-review-simplify rule Signed-off-by: Andrey Kuzmin <unsoundscapes@gmail.com> * Make assets Signed-off-by: Andrey Kuzmin <unsoundscapes@gmail.com>
14 lines
412 B
Docker
14 lines
412 B
Docker
# elm-format only works with buster variants of the NodeJS container image.
|
|
# See https://github.com/avh4/elm-format/issues/709 for more details.
|
|
FROM node:14-buster
|
|
|
|
ENV NPM_CONFIG_PREFIX=/home/node/.npm-global
|
|
ENV PATH=$PATH:/home/node/.npm-global/bin
|
|
|
|
RUN mkdir -p $NPM_CONFIG_PREFIX; yarn global add \
|
|
elm@0.19.1 \
|
|
elm-format@0.8.5 \
|
|
elm-test@0.19.1-revision6 \
|
|
uglify-js@3.13.4 \
|
|
elm-review@2.5.0
|