From c3178b25e00ec3fe152904cfa1f9b47076fc0435 Mon Sep 17 00:00:00 2001
From: Uku Taht <uku.taht@gmail.com>
Date: Thu, 23 Dec 2021 14:49:40 +0200
Subject: [PATCH] Remove geonames file from Dockerfile

---
 Dockerfile | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 3b6bc4c8..624b4810 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -18,8 +18,6 @@ RUN apk add --no-cache git nodejs yarn python3 npm ca-certificates wget gnupg ma
     npm install npm@latest -g && \
     npm install -g webpack
 
-RUN wget https://s3.eu-central-1.wasabisys.com/plausible-application/geonames.csv -q
-
 COPY mix.exs ./
 COPY mix.lock ./
 RUN mix local.hex --force && \
@@ -44,8 +42,7 @@ RUN npm run deploy --prefix ./assets && \
     mix phx.digest priv/static && \
     mix download_country_database && \
 # https://hexdocs.pm/sentry/Sentry.Sources.html#module-source-code-storage
-    mix sentry_recompile && \
-    mv geonames.csv ./priv/geonames.csv
+    mix sentry_recompile &&
 
 WORKDIR /app
 COPY rel rel
@@ -69,7 +66,6 @@ COPY --from=buildcontainer /app/_build/prod/rel/plausible /app
 RUN chown -R plausibleuser:plausibleuser /app
 USER plausibleuser
 WORKDIR /app
-ENV GEONAMES_SOURCE_FILE=/app/lib/plausible-0.0.1/priv/geonames.csv
 ENTRYPOINT ["/entrypoint.sh"]
 EXPOSE 8000
 CMD ["run"]
-- 
GitLab