File tree 3 files changed +6
-4
lines changed
3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -444,7 +444,7 @@ cache/$1/$2/docker_$3.tar: $1_$2_$3
444
444
.PHONY: sh_$1_$2_$3
445
445
sh_$1_$2_$3: $1_$2_$3 | export
446
446
${DOCKER_RUN_CMD} \
447
- -v ` pwd` /export:/export \
447
+ -v $$ $$( pwd ) /export:/export \
448
448
-it \
449
449
--name ortools_$$< \
450
450
${IMAGE}:$$<
@@ -499,7 +499,7 @@ cache/$1/$2/docker_$3_$4.tar: $1_$2_$3_$4
499
499
.PHONY: sh_$1_$2_$3_$4
500
500
sh_$1_$2_$3_$4: $1_$2_$3_$4 | export
501
501
${DOCKER_RUN_CMD} \
502
- -v ` pwd` /export:/export \
502
+ -v $$ $$( pwd ) /export:/export \
503
503
-it \
504
504
--name ortools_$$< \
505
505
${IMAGE}:$$<
@@ -539,9 +539,9 @@ export/archives/or-tools_$1_$2_$3_v${OR_TOOLS_VERSION}.tar.gz: $1_$2_$3_archive
539
539
-mkdir -p export/$1/$2
540
540
${DOCKER_RUN_CMD} \
541
541
-w /root/or-tools \
542
- -v ` pwd` /export:/export \
542
+ -v $$ $$( pwd ) /export:/export \
543
543
${IMAGE}:$$< \
544
- "cp or-tools_*_v*.tar.gz /export/$1/$2"
544
+ "cp or-tools_*_v*.tar.gz /export/$1/$2/ "
545
545
cp export/$1/$2/or-tools_*_$3*_v*.tar.gz $$@
546
546
547
547
.PHONY: clean_$1_$2_$3_export
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ RUN dnf -y update \
10
10
&& dnf -y groupinstall "Development Tools" \
11
11
&& dnf clean all \
12
12
&& rm -rf /var/cache/dnf
13
+ ENTRYPOINT ["/usr/bin/bash" , "-c" ]
13
14
CMD [ "/usr/bin/bash" ]
14
15
15
16
# Install SWIG 4.2.1
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ RUN dnf -y update \
10
10
&& dnf -y groupinstall "Development Tools" \
11
11
&& dnf clean all \
12
12
&& rm -rf /var/cache/dnf
13
+ ENTRYPOINT ["/usr/bin/bash" , "-c" ]
13
14
CMD [ "/usr/bin/bash" ]
14
15
15
16
# Install SWIG 4.2.1
You can’t perform that action at this time.
0 commit comments