summary refs log tree commit diff
path: root/Dockerfile
diff options
context:
space:
mode:
authorMatt Arnold <matt@thegnuguru.org>2023-01-14 00:26:57 -0500
committerMatt Arnold <matt@thegnuguru.org>2023-01-14 00:26:57 -0500
commitb5d9a4a473a8e40a724b98f5033f33400e15be78 (patch)
tree6f681021485981310dc90f26f38e31ba7318cfee /Dockerfile
parent40fdfd29b720f73330df039579ccdef5fb6b6d27 (diff)
add flyio stuff and suppport code for the new engine flyio
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