From 261ff0cad1b1208c467400a3096c7a3834c98664 Mon Sep 17 00:00:00 2001 From: Alexader Eisele Date: Sun, 10 Feb 2019 12:17:35 +0100 Subject: [PATCH] Fix Dockerfile The build script was unable to copy the example config and the start script --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 342eb43..a06dbe8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,8 +17,8 @@ ENV UID=1337 \ RUN apk add --no-cache su-exec ca-certificates COPY --from=builder /usr/bin/mautrix-whatsapp /usr/bin/mautrix-whatsapp -COPY --from=builder /go/src/maunium.net/go/mautrix-whatsapp/example-config.yaml /opt/mautrix-whatsapp/example-config.yaml -COPY --from=builder /go/src/maunium.net/go/mautrix-whatsapp/docker-run.sh /docker-run.sh +COPY --from=builder /build/example-config.yaml /opt/mautrix-whatsapp/example-config.yaml +COPY --from=builder /build/docker-run.sh /docker-run.sh VOLUME /data CMD ["/docker-run.sh"]