From 9f841bf00f2a02250f30d82d0a7bb314bdefdb93 Mon Sep 17 00:00:00 2001 From: LeithC Date: Mon, 25 Oct 2021 16:54:38 +1030 Subject: [PATCH] Modified zs_config.json to only copy if exists If zs_config.json does not exist it no longer forces a copy of the file. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c24ed24..40838a4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,6 +14,6 @@ FROM base COPY --from=builder /install /usr/local COPY zspotify /app -COPY zs_config.json / +COPY *zs_config.json / WORKDIR /app ENTRYPOINT ["/usr/local/bin/python", "__main__.py"]