Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChrisTerBeke <c.terbeke@ultimaker.com>2018-02-27 15:31:07 +0300
committerChrisTerBeke <c.terbeke@ultimaker.com>2018-02-27 15:31:07 +0300
commit4dd01afffbc96363f18fc16773a5a37d42d1324f (patch)
tree03ccd8fee8fde903a745b5ca1f98650eec698bfb /Dockerfile
parentdae2d9d761c2233f58d4300973253e6d45c300fe (diff)
Cleanup Dockerfile
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile11
1 files changed, 7 insertions, 4 deletions
diff --git a/Dockerfile b/Dockerfile
index 4aa7b4557c..e71ae35b46 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -5,20 +5,23 @@ ENV CURA_BRANCH=master
ENV URANIUM_BRANCH=$CURA_BRANCH
ENV CURA_BENV_GIT_DIR=/srv/cura
-# Setup the repositories
RUN mkdir $CURA_BENV_GIT_DIR
+
+# Setup Uranium
WORKDIR $CURA_BENV_GIT_DIR
RUN git clone https://github.com/Ultimaker/Uranium
WORKDIR $CURA_BENV_GIT_DIR/Uranium
RUN git fetch origin
RUN git checkout $URANIUM_BRANCH
+RUN export PYTHOHPATH="${PYTHONPATH}:$CURA_BENV_GIT_DIR/Uranium"
+
+# Setup Cura
+WORKDIR $CURA_BENV_GIT_DIR
RUN git clone https://github.com/Ultimaker/cura
WORKDIR $CURA_BENV_GIT_DIR/Cura
RUN git fetch origin
RUN git checkout origin $CURA_BRANCH
-# Ensure Uranium is in the python path
-RUN export PYTHOHPATH="${PYTHONPATH}:$CURA_BENV_GIT_DIR/Uranium"
-
# Run Cura
+WORKDIR $CURA_BENV_GIT_DIR/Cura
CMD ["python3", "cura_app.py"]