2021-02-09 14:47:54 +00:00
|
|
|
# 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
|
2017-04-04 12:16:06 +00:00
|
|
|
|
2021-02-09 14:47:54 +00:00
|
|
|
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 \
|
2021-04-27 05:14:00 +00:00
|
|
|
elm-format@0.8.5 \
|
2021-02-09 14:47:54 +00:00
|
|
|
elm-test@0.19.1-revision6 \
|
2021-04-27 05:14:00 +00:00
|
|
|
uglify-js@3.13.4 \
|
|
|
|
elm-review@2.5.0
|