docker: hotfix image name
[nit.git] / misc / docker / Dockerfile
index d7a3f49..a1d602c 100644 (file)
@@ -21,11 +21,15 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-ins
        && rm -rf /var/lib/apt/lists/*
 
 # Clone and compile
-RUN git clone https://github.com/nitlang/nit.git /root/nit \
-       && cd /root/nit \
+RUN git clone https://github.com/nitlang/nit.git /nit \
+       && cd /nit \
        && make \
        && . misc/nit_env.sh install \
        # Clean and reduce size
        && strip c_src/nitc bin/nit* \
        && ccache -C \
        && rm -rf .git
+
+ENV NIT_DIR /nit
+ENV PATH $NIT_DIR/bin:$PATH
+WORKDIR $NIT_DIR