On Tuesday, November 29, 2016 at 1:54:06 PM UTC, Rupert Smith wrote:
>
> Perhaps just create a vm or docker container and install elm 0.18 inside 
> that?
>

I created a Dockerfile with these installation commands in it:

RUN apt-get update && \
    apt-get upgrade -y && \
    apt-get clean

RUN apt-get update && apt-get install -y git
        
RUN useradd -ms /bin/bash rupert
RUN npm install -g grunt-cli        
RUN npm install -g elm
RUN npm install -g elm-github-install

USER rupert
WORKDIR /home/rupert 

Then run it with:

docker run -it -v /home/rupert:/home/rupert rupertlssmith/elm18:v1 /bin/bash

Which gives me a bash shell in my home directory with elm 0.18. Good enough.

-- 
You received this message because you are subscribed to the Google Groups "Elm 
Discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to