From 38e92fbdbf8ff2197da9c337993900709df93532 Mon Sep 17 00:00:00 2001 From: fiatjaf Date: Sat, 8 Feb 2025 21:34:34 -0300 Subject: [PATCH] fix relay-config.json path in Dockerfile. fixes https://github.com/fiatjaf/njump/issues/92 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 606ea85..440a9b1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -61,7 +61,7 @@ WORKDIR /root COPY --from=gobuilder /app/main . # Copy relay config -COPY --from=gobuilder /app/relay-config.json . +COPY --from=gobuilder /app/relay-config.json.sample . # Expose port EXPOSE 2999