From d123f9ae4be6ddb4fee02c8bc761c9c753589fab Mon Sep 17 00:00:00 2001 From: eldridgea Date: Sat, 8 Sep 2018 15:26:05 -0400 Subject: [PATCH] Updated permissions for entrypoint (#408) Made entrypoint.sh executable in the container to apply fix for https://github.com/jessfraz/dockerfiles/issues/407. --- unifi/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/unifi/Dockerfile b/unifi/Dockerfile index 21610a7..87a537d 100644 --- a/unifi/Dockerfile +++ b/unifi/Dockerfile @@ -106,6 +106,7 @@ WORKDIR /config EXPOSE 3478/udp 8080 8081 8443 8843 8880 6789 COPY entrypoint.sh /usr/local/bin/entrypoint.sh +RUN chmod +x /usr/local/bin/entrypoint.sh ENTRYPOINT [ "entrypoint.sh" ] CMD ["java", "-Xmx1024M", "-jar", "/usr/lib/unifi/lib/ace.jar", "start"]