From 06fd26752c137ce98129b8776a2cbe2a9a559c8d Mon Sep 17 00:00:00 2001 From: afh Date: Sun, 18 Apr 2021 10:34:20 +0200 Subject: [PATCH] Dockerfile: Pass arguments from docker to cointop --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c066462..16edb7b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,5 +13,5 @@ RUN mkdir -p /etc/ssl COPY --from=build /etc/ssl/certs/ /etc/ssl/certs COPY --from=build /app/main /bin/cointop COPY --from=build /app/colors /root/.config/cointop/colors -ENTRYPOINT cointop +ENTRYPOINT ["/bin/cointop"] CMD []