File tree Expand file tree Collapse file tree 9 files changed +80
-18
lines changed Expand file tree Collapse file tree 9 files changed +80
-18
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,8 @@ WORKDIR /home/nurbs
12
12
13
13
RUN git clone https://github.com/orbingol/NURBS-Python.git library \
14
14
&& git clone https://github.com/orbingol/NURBS-Python_Examples.git examples \
15
- && git clone https://github.com/orbingol/geomdl-cli.git app
15
+ && git clone https://github.com/orbingol/geomdl-cli.git app \
16
+ && git clone https://github.com/orbingol/geomdl-shapes.git shapes
16
17
17
18
ENV PATH="/home/nurbs/.local/bin:${PATH}"
18
19
@@ -31,9 +32,15 @@ RUN pip install --user --no-cache-dir -r requirements.txt
31
32
32
33
RUN pip install --user --no-cache-dir .
33
34
35
+ WORKDIR /home/nurbs/shapes
36
+
37
+ RUN pip install --user --no-cache-dir -r requirements.txt
38
+
39
+ RUN pip install --user --no-cache-dir .
40
+
34
41
WORKDIR /home/nurbs
35
42
36
- RUN python -c "import geomdl; import geomdl.core; import geomdl.cli"
43
+ RUN python -c "import geomdl; import geomdl.core; import geomdl.cli; import geomdl.shapes "
37
44
38
45
COPY --chown=nurbs:nurbs matplotlibrc .config/matplotlib/matplotlibrc
39
46
COPY --chown=nurbs:nurbs README.md .
Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ WORKDIR /home/nurbs
14
14
15
15
RUN git clone https://github.com/orbingol/NURBS-Python.git library \
16
16
&& git clone https://github.com/orbingol/NURBS-Python_Examples.git examples \
17
- && git clone https://github.com/orbingol/geomdl-cli.git app
17
+ && git clone https://github.com/orbingol/geomdl-cli.git app \
18
+ && git clone https://github.com/orbingol/geomdl-shapes.git shapes
18
19
19
20
ENV PATH="/home/nurbs/.local/bin:${PATH}"
20
21
@@ -32,10 +33,15 @@ RUN pip install --user --no-cache-dir -r requirements.txt
32
33
33
34
RUN pip install --user --no-cache-dir .
34
35
36
+ WORKDIR /home/nurbs/shapes
37
+
38
+ RUN pip install --user --no-cache-dir -r requirements.txt
39
+
40
+ RUN pip install --user --no-cache-dir .
35
41
36
42
WORKDIR /home/nurbs
37
43
38
- RUN python -c "import geomdl; import geomdl.core; import geomdl.cli"
44
+ RUN python -c "import geomdl; import geomdl.core; import geomdl.cli; import geomdl.shapes "
39
45
40
46
COPY --chown=nurbs:nurbs matplotlibrc .config/matplotlib/matplotlibrc
41
47
COPY --chown=nurbs:nurbs README.md .
Original file line number Diff line number Diff line change @@ -12,7 +12,8 @@ WORKDIR /home/nurbs
12
12
13
13
RUN git clone https://github.com/orbingol/NURBS-Python.git library \
14
14
&& git clone https://github.com/orbingol/NURBS-Python_Examples.git examples \
15
- && git clone https://github.com/orbingol/geomdl-cli.git app
15
+ && git clone https://github.com/orbingol/geomdl-cli.git app \
16
+ && git clone https://github.com/orbingol/geomdl-shapes.git shapes
16
17
17
18
ENV PATH="/home/nurbs/.local/bin:${PATH}"
18
19
@@ -31,9 +32,15 @@ RUN pip install --user --no-cache-dir -r requirements.txt
31
32
32
33
RUN pip install --user --no-cache-dir .
33
34
35
+ WORKDIR /home/nurbs/shapes
36
+
37
+ RUN pip install --user --no-cache-dir -r requirements.txt
38
+
39
+ RUN pip install --user --no-cache-dir .
40
+
34
41
WORKDIR /home/nurbs
35
42
36
- RUN python -c "import geomdl; import geomdl.core; import geomdl.cli"
43
+ RUN python -c "import geomdl; import geomdl.core; import geomdl.cli; import geomdl.shapes "
37
44
38
45
COPY --chown=nurbs:nurbs matplotlibrc .config/matplotlib/matplotlibrc
39
46
COPY --chown=nurbs:nurbs README.md .
Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ WORKDIR /home/nurbs
14
14
15
15
RUN git clone https://github.com/orbingol/NURBS-Python.git library \
16
16
&& git clone https://github.com/orbingol/NURBS-Python_Examples.git examples \
17
- && git clone https://github.com/orbingol/geomdl-cli.git app
17
+ && git clone https://github.com/orbingol/geomdl-cli.git app \
18
+ && git clone https://github.com/orbingol/geomdl-shapes.git shapes
18
19
19
20
ENV PATH="/home/nurbs/.local/bin:${PATH}"
20
21
@@ -33,9 +34,15 @@ RUN pip install --user --no-cache-dir -r requirements.txt
33
34
34
35
RUN pip install --user --no-cache-dir .
35
36
37
+ WORKDIR /home/nurbs/shapes
38
+
39
+ RUN pip install --user --no-cache-dir -r requirements.txt
40
+
41
+ RUN pip install --user --no-cache-dir .
42
+
36
43
WORKDIR /home/nurbs
37
44
38
- RUN python -c "import geomdl; import geomdl.core; import geomdl.cli"
45
+ RUN python -c "import geomdl; import geomdl.core; import geomdl.cli; import geomdl.shapes "
39
46
40
47
COPY --chown=nurbs:nurbs matplotlibrc .config/matplotlib/matplotlibrc
41
48
COPY --chown=nurbs:nurbs README.md .
Original file line number Diff line number Diff line change @@ -12,7 +12,8 @@ WORKDIR /home/nurbs
12
12
13
13
RUN git clone https://github.com/orbingol/NURBS-Python.git library \
14
14
&& git clone https://github.com/orbingol/NURBS-Python_Examples.git examples \
15
- && git clone https://github.com/orbingol/geomdl-cli.git app
15
+ && git clone https://github.com/orbingol/geomdl-cli.git app \
16
+ && git clone https://github.com/orbingol/geomdl-shapes.git shapes
16
17
17
18
ENV PATH="/home/nurbs/.local/bin:${PATH}"
18
19
@@ -31,9 +32,15 @@ RUN pip install --user --no-cache-dir -r requirements.txt
31
32
32
33
RUN pip install --user --no-cache-dir .
33
34
35
+ WORKDIR /home/nurbs/shapes
36
+
37
+ RUN pip install --user --no-cache-dir -r requirements.txt
38
+
39
+ RUN pip install --user --no-cache-dir .
40
+
34
41
WORKDIR /home/nurbs
35
42
36
- RUN python -c "import geomdl; import geomdl.core; import geomdl.cli"
43
+ RUN python -c "import geomdl; import geomdl.core; import geomdl.cli; import geomdl.shapes "
37
44
38
45
COPY --chown=nurbs:nurbs matplotlibrc .config/matplotlib/matplotlibrc
39
46
COPY --chown=nurbs:nurbs README.md .
Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ WORKDIR /home/nurbs
14
14
15
15
RUN git clone https://github.com/orbingol/NURBS-Python.git library \
16
16
&& git clone https://github.com/orbingol/NURBS-Python_Examples.git examples \
17
- && git clone https://github.com/orbingol/geomdl-cli.git app
17
+ && git clone https://github.com/orbingol/geomdl-cli.git app \
18
+ && git clone https://github.com/orbingol/geomdl-shapes.git shapes
18
19
19
20
ENV PATH="/home/nurbs/.local/bin:${PATH}"
20
21
@@ -33,9 +34,15 @@ RUN pip install --user --no-cache-dir -r requirements.txt
33
34
34
35
RUN pip install --user --no-cache-dir .
35
36
37
+ WORKDIR /home/nurbs/shapes
38
+
39
+ RUN pip install --user --no-cache-dir -r requirements.txt
40
+
41
+ RUN pip install --user --no-cache-dir .
42
+
36
43
WORKDIR /home/nurbs
37
44
38
- RUN python -c "import geomdl; import geomdl.core; import geomdl.cli"
45
+ RUN python -c "import geomdl; import geomdl.core; import geomdl.cli; import geomdl.shapes "
39
46
40
47
COPY --chown=nurbs:nurbs matplotlibrc .config/matplotlib/matplotlibrc
41
48
COPY --chown=nurbs:nurbs README.md .
Original file line number Diff line number Diff line change @@ -12,7 +12,8 @@ WORKDIR /home/nurbs
12
12
13
13
RUN git clone https://github.com/orbingol/NURBS-Python.git library \
14
14
&& git clone https://github.com/orbingol/NURBS-Python_Examples.git examples \
15
- && git clone https://github.com/orbingol/geomdl-cli.git app
15
+ && git clone https://github.com/orbingol/geomdl-cli.git app \
16
+ && git clone https://github.com/orbingol/geomdl-shapes.git shapes
16
17
17
18
ENV PATH="/home/nurbs/.local/bin:${PATH}"
18
19
@@ -31,9 +32,15 @@ RUN pip install --user --no-cache-dir -r requirements.txt
31
32
32
33
RUN pip install --user --no-cache-dir .
33
34
35
+ WORKDIR /home/nurbs/shapes
36
+
37
+ RUN pip install --user --no-cache-dir -r requirements.txt
38
+
39
+ RUN pip install --user --no-cache-dir .
40
+
34
41
WORKDIR /home/nurbs
35
42
36
- RUN python -c "import geomdl; import geomdl.core; import geomdl.cli"
43
+ RUN python -c "import geomdl; import geomdl.core; import geomdl.cli; import geomdl.shapes "
37
44
38
45
COPY --chown=nurbs:nurbs matplotlibrc .config/matplotlib/matplotlibrc
39
46
COPY --chown=nurbs:nurbs README.md .
Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ WORKDIR /home/nurbs
14
14
15
15
RUN git clone https://github.com/orbingol/NURBS-Python.git library \
16
16
&& git clone https://github.com/orbingol/NURBS-Python_Examples.git examples \
17
- && git clone https://github.com/orbingol/geomdl-cli.git app
17
+ && git clone https://github.com/orbingol/geomdl-cli.git app \
18
+ && git clone https://github.com/orbingol/geomdl-shapes.git shapes
18
19
19
20
ENV PATH="/home/nurbs/.local/bin:${PATH}"
20
21
@@ -33,9 +34,15 @@ RUN pip install --user --no-cache-dir -r requirements.txt
33
34
34
35
RUN pip install --user --no-cache-dir .
35
36
37
+ WORKDIR /home/nurbs/shapes
38
+
39
+ RUN pip install --user --no-cache-dir -r requirements.txt
40
+
41
+ RUN pip install --user --no-cache-dir .
42
+
36
43
WORKDIR /home/nurbs
37
44
38
- RUN python -c "import geomdl; import geomdl.core; import geomdl.cli"
45
+ RUN python -c "import geomdl; import geomdl.core; import geomdl.cli; import geomdl.shapes "
39
46
40
47
COPY --chown=nurbs:nurbs matplotlibrc .config/matplotlib/matplotlibrc
41
48
COPY --chown=nurbs:nurbs README.md .
Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ WORKDIR /home/nurbs
14
14
15
15
RUN git clone https://github.com/orbingol/NURBS-Python.git library \
16
16
&& git clone https://github.com/orbingol/NURBS-Python_Examples.git examples \
17
- && git clone https://github.com/orbingol/geomdl-cli.git app
17
+ && git clone https://github.com/orbingol/geomdl-cli.git app \
18
+ && git clone https://github.com/orbingol/geomdl-shapes.git shapes
18
19
19
20
ENV PATH="/home/nurbs/.local/bin:${PATH}"
20
21
@@ -35,9 +36,15 @@ RUN pypy3 -m pip install --user --no-cache-dir -r requirements.txt
35
36
36
37
RUN pypy3 -m pip install --user --no-cache-dir .
37
38
39
+ WORKDIR /home/nurbs/shapes
40
+
41
+ RUN pip install --user --no-cache-dir -r requirements.txt
42
+
43
+ RUN pip install --user --no-cache-dir .
44
+
38
45
WORKDIR /home/nurbs
39
46
40
- RUN pypy3 -c "import geomdl; import geomdl.cli"
47
+ RUN pypy3 -c "import geomdl; import geomdl.cli; import geomdl.shapes "
41
48
42
49
COPY --chown=nurbs:nurbs matplotlibrc .config/matplotlib/matplotlibrc
43
50
COPY --chown=nurbs:nurbs README.md .
You can’t perform that action at this time.
0 commit comments