From da2708abe5c87d79205476514ad042befb95d27a Mon Sep 17 00:00:00 2001 From: Alex Ling Date: Thu, 19 Mar 2020 18:17:26 +0000 Subject: [PATCH] Put mango binary in `/` instead of `/root/Mango/` --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 909b191..d230549 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,8 +9,8 @@ RUN apk add --no-cache yarn yaml sqlite-static \ FROM library/alpine -WORKDIR /root +WORKDIR / -COPY --from=builder /Mango/mango ./Mango/ +COPY --from=builder /Mango/mango . -CMD ["/root/Mango/mango"] +CMD ["./mango"]