From f889ebb9d9017e330096b7eb828b639a4d3b68a6 Mon Sep 17 00:00:00 2001 From: Peter Stuifzand Date: Tue, 6 Aug 2019 23:41:50 +0200 Subject: [PATCH] Try absolute path in Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 958e13d..43f2310 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,6 @@ FROM alpine RUN apk --no-cache add ca-certificates WORKDIR /opt/micropub EXPOSE 80 -COPY ./eksterd /app/ -COPY ./templates /app/templates +COPY /go/src/p83.nl/go/ekster/cmd/eksterd /app/ +COPY /go/src/p83.nl/go/ekster/templates /app/templates ENTRYPOINT ["/app/eksterd"]