summary refs log tree commit diff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile6
1 files changed, 2 insertions, 4 deletions
diff --git a/Dockerfile b/Dockerfile
index 258cdda..6e372e9 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -4,13 +4,11 @@ RUN echo -e  "\nhttps://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/ap
 RUN apk add --update --no-cache go git make musl-dev curl openssl
 RUN mkdir -p /app/src
 WORKDIR /app/src
+ARG appRoot=/app
 COPY appbuild.sh /app/src
 RUN chmod +x appbuild.sh
 RUN ./appbuild.sh
-COPY intercept.key /app
-COPY intercept.csr /app
-COPY intercept.crt /app
-
+COPY sign.sh /app/src
 WORKDIR /
 COPY entrypoint.sh /
 RUN chmod +x entrypoint.sh