Skip to content

Commit c1729ab

Browse files
committed
Fix entrypoints
1 parent fffe371 commit c1729ab

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

build-linux/Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -290,9 +290,9 @@ RUN rm -Rf opencv-${opencv_version}* \
290290
#############################################################
291291
## Copy entry point
292292
#############################################################
293-
COPY entrypoint_docker.sh /
294-
COPY entrypoint_docker_tests.sh /
293+
COPY entrypoint.sh /
294+
COPY entrypoint_tests.sh /
295295
WORKDIR /
296-
RUN chmod +x /entrypoint_docker.sh
297-
RUN chmod +x /entrypoint_docker_tests.sh
298-
ENTRYPOINT ["/entrypoint_docker.sh"]
296+
RUN chmod +x /entrypoint.sh
297+
RUN chmod +x /entrypoint_tests.sh
298+
ENTRYPOINT ["/entrypoint.sh"]

build-raspberrypi/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ RUN rm libudev.tar.gz
372372
#############################################################
373373
## Copy entry point
374374
#############################################################
375-
COPY entrypoint_docker.sh /
375+
COPY entrypoint.sh /
376376
WORKDIR /
377-
RUN chmod +x /entrypoint_docker.sh
378-
ENTRYPOINT ["/entrypoint_docker.sh"]
377+
RUN chmod +x /entrypoint.sh
378+
ENTRYPOINT ["/entrypoint.sh"]

0 commit comments

Comments
 (0)