diff --git a/Dockerfile b/Dockerfile index a2c0a11..3f1cea5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,12 +17,6 @@ ENV NEXT_TELEMETRY_DISABLED 1 ARG GIT_REV ENV GIT_REV ${GIT_REV} -ARG SENTRY_AUTH_TOKEN -ENV SENTRY_AUTH_TOKEN ${SENTRY_AUTH_TOKEN} - -ARG REDIS_URL -ENV REDIS_URL ${REDIS_URL} - RUN echo "redis url: ${REDIS_URL}" # Build the app diff --git a/src/db/redis.ts b/src/db/redis.ts index 88ab37e..d2dee72 100644 --- a/src/db/redis.ts +++ b/src/db/redis.ts @@ -2,8 +2,6 @@ import { createClient } from "redis"; let redisClient = await connectRedis(); -console.log(process.env.REDIS_URL); - async function connectRedis(): Promise { // console.log("Connecting to redis"); const client = createClient({