From 13c8a730f8c27f6e78a8bc3bbc24ee25c2e655ca Mon Sep 17 00:00:00 2001 From: Michael Matloka Date: Mon, 10 Jun 2024 10:34:27 +0200 Subject: [PATCH] Use clearer name for MMDB --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index baf50fb..e623c6b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,9 +16,9 @@ RUN apt-get update && \ && \ rm -rf /var/lib/apt/lists/* && \ mkdir share && \ - ( curl -s -L "https://mmdbcdn.posthog.net/" --http1.1 | brotli --decompress --output=/mmdb.db ) && \ - chmod -R 755 /mmdb.db + ( curl -s -L "https://mmdbcdn.posthog.net/" --http1.1 | brotli --decompress --output=/GeoLite2-City.mmdb ) && \ + chmod -R 755 /GeoLite2-City.mmdb FROM ubuntu -COPY --from=builder /livestream /mmdb.db / +COPY --from=builder /livestream /GeoLite2-City.mmdb / CMD ["/livestream"]