From ea901aaee1034a18148e5f02e7c0c4ee6769ff7c Mon Sep 17 00:00:00 2001 From: Rohith Jayawardene Date: Mon, 24 Apr 2017 11:28:25 +0100 Subject: [PATCH] Dockerfile (#213) - removing the unrequired chmod - fixing up the directory path --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6dfef4f2..6332748b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,9 +4,8 @@ MAINTAINER Rohith RUN apk update && \ apk add ca-certificates -ADD templates/ opt/templates +ADD templates/ /opt/templates ADD bin/keycloak-proxy /opt/keycloak-proxy -RUN chmod +x /opt/keycloak-proxy WORKDIR "/opt"