]> git.immae.eu Git - github/fretlink/purescript-docker.git/blobdiff - Dockerfile
Remove node user introduced by base container
[github/fretlink/purescript-docker.git] / Dockerfile
index 499599417a31b5a262175fe4e9e307e6f8180b40..1a2f8d0231389d91b16b9616c53b7c8402c785a9 100644 (file)
@@ -2,18 +2,19 @@ FROM node:6
 
 MAINTAINER Risto Stevcev
 
-ENV PURESCRIPT_DOWNLOAD_SHA1 9e8ff98e1e5d0dbf34df5124dc42d3b73e9dc257
+ENV PURESCRIPT_DOWNLOAD_SHA1 6fc98db5f7d58c4d2d7d80a73cefcad8c0189358
 
 RUN npm install -g bower pulp@9.0.1
 
 RUN cd /opt \
-    && wget https://github.com/purescript/purescript/releases/download/v0.9.2/linux64.tar.gz \
+    && wget https://github.com/purescript/purescript/releases/download/v0.10.0-rc.1/linux64.tar.gz \
     && echo "$PURESCRIPT_DOWNLOAD_SHA1 linux64.tar.gz" | sha1sum -c - \
     && tar -xvf linux64.tar.gz \
     && rm /opt/linux64.tar.gz
 
 ENV PATH /opt/purescript:$PATH
 
+RUN userdel node
 RUN useradd -m -s /bin/bash pureuser
 
 WORKDIR /home/pureuser