about summary refs log tree commit diff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
index 45c1829..216a5bb 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -16,3 +16,8 @@ COPY hosted /workdir/hosted
 RUN go build -o /workdir/manager src/*.go
 
 ENTRYPOINT [ "/workdir/manager" ]
+
+FROM alpine:3
+RUN mkdir /workdir
+COPY --from=0 /workdir/manager .
+CMD ["./manager"]