From ad71f2058293998820c3c0bc56805d940ce2abeb Mon Sep 17 00:00:00 2001 From: MichaIng Date: Thu, 24 Mar 2022 18:34:50 +0100 Subject: [PATCH] Fix Docker container by copying entrypoint in place (#2386) https://github.com/motioneye-project/motioneye/issues/2373#issuecomment-1077641190 Signed-off-by: MichaIng --- extra/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/extra/Dockerfile b/extra/Dockerfile index 55b5355f4..5988c21a2 100644 --- a/extra/Dockerfile +++ b/extra/Dockerfile @@ -6,6 +6,7 @@ ARG RUN_UID=0 ARG RUN_GID=0 COPY . /tmp/motioneye +COPY extra/entrypoint.sh /entrypoint.sh RUN case "$(dpkg --print-architecture)" in \ 'armhf') PACKAGES='python3-distutils'; printf '%b' '[global]\nextra-index-url=https://www.piwheels.org/simple/\n' > /etc/pip.conf;; \