From 8f8700c311dd7d674b1d4ece632288e54db9f1ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Se=C3=A1n=20C=20McCord?= Date: Sun, 22 Apr 2018 18:04:47 -0400 Subject: [PATCH] docker: use scratch image --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 91c2859..122a4c2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,2 +1,3 @@ -FROM ulexus/go-minimal -COPY ari-proxy /app +FROM scratch +COPY ari-proxy / +ENTRYPOINT ["/ari-proxy"]