From 191e3a7e9aec42dc8085ff05c6fcfc445d898efb Mon Sep 17 00:00:00 2001 From: Ryan Freeman Date: Thu, 22 Aug 2024 22:11:29 +0100 Subject: [PATCH] Update Dockerfile --- .dockerignore | 1 - Dockerfile | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.dockerignore b/.dockerignore index 750ddef..04ae4fb 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,4 +1,3 @@ node_modules .git -.env .next \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 4a32eb7..566e4dd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -45,6 +45,8 @@ RUN --mount=type=secret,id=SPOTIFY_CLIENT_ID \ export SPOTIFY_REFRESH_TOKEN=$(sed -n 's/^NEXT_PUBLIC_SUPABASE_ANON_KEY=\(.*\)$/\1/p' .env) && \ export SPOTIFY_REFRESH_TOKEN=$(sed -n 's/^SUPABASE_SERVICE_ROLE_KEY=\(.*\)$/\1/p' .env) +RM .env + # Next.js collects completely anonymous telemetry data about general usage. # Learn more here: https://nextjs.org/telemetry # Uncomment the following line in case you want to disable telemetry during the build.