From 8e5f52ee7069a8b690be0ef4a7f53df2e330c5ee Mon Sep 17 00:00:00 2001
From: Ruben <ruben@rubend.nl>
Date: Sat, 10 Aug 2024 15:37:59 +0200
Subject: [PATCH] Fix path to api.

---
 Dockerfile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
index 83d5ae2..7daff4b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -4,7 +4,7 @@ RUN corepack enable
 COPY package.json yarn.lock .yarnrc.yml .
 RUN yarn install
 COPY . .
-RUN sed -i 's_defaultServer: "https://overpass-api.de/api/"_defaultServer: "https://overpass-api.rubend.nl"_g' js/configs.ts && \
+RUN sed -i 's_defaultServer: "https://overpass-api.de/api/"_defaultServer: "https://overpass-api.rubend.nl/api/"_g' js/configs.ts && \
     sed -i 's_https://overpass-api.de/api/_https://overpass-api.de/api/_' js/configs.ts && \
     echo "echo DUMMY" > /bin/git && chmod +x /bin/git
 RUN yarn run build
-- 
GitLab