diff --git a/backend/Dockerfile b/backend/Dockerfile index a0b50c53cbe0..a61864fa2c0b 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -1,5 +1,10 @@ FROM python:3.11.7-slim-bookworm +LABEL com.danswer.maintainer="founders@danswer.ai" +LABEL com.danswer.description="This image is for the backend of Danswer. It is MIT Licensed and \ +free for all to use. You can find it at https://hub.docker.com/r/danswer/danswer-backend. For \ +more details, visit https://github.com/danswer-ai/danswer." + # Default DANSWER_VERSION, typically overriden during builds by GitHub Actions. ARG DANSWER_VERSION=0.3-dev ENV DANSWER_VERSION=${DANSWER_VERSION} diff --git a/backend/Dockerfile.model_server b/backend/Dockerfile.model_server index cb7115c0bc73..365a553c9f13 100644 --- a/backend/Dockerfile.model_server +++ b/backend/Dockerfile.model_server @@ -1,5 +1,11 @@ FROM python:3.11.7-slim-bookworm +LABEL com.danswer.maintainer="founders@danswer.ai" +LABEL com.danswer.description="This image is for the Danswer model server which runs all of the \ +AI models for Danswer. This container and all the code is MIT Licensed and free for all to use. \ +You can find it at https://hub.docker.com/r/danswer/danswer-model-server. For more details, \ +visit https://github.com/danswer-ai/danswer." + # Default DANSWER_VERSION, typically overriden during builds by GitHub Actions. ARG DANSWER_VERSION=0.3-dev ENV DANSWER_VERSION=${DANSWER_VERSION} diff --git a/web/Dockerfile b/web/Dockerfile index adcb4b9fa534..9b8de5314d15 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -1,5 +1,11 @@ FROM node:20-alpine AS base +LABEL com.danswer.maintainer="founders@danswer.ai" +LABEL com.danswer.description="This image is for the frontend/webserver of Danswer. It is MIT \ +Licensed and free for all to use. You can find it at \ +https://hub.docker.com/r/danswer/danswer-web-server. For more details, visit \ +https://github.com/danswer-ai/danswer." + # Default DANSWER_VERSION, typically overriden during builds by GitHub Actions. ARG DANSWER_VERSION=0.3-dev ENV DANSWER_VERSION=${DANSWER_VERSION} diff --git a/web/src/lib/constants.ts b/web/src/lib/constants.ts index 67346119c69b..3f54a784b7c2 100644 --- a/web/src/lib/constants.ts +++ b/web/src/lib/constants.ts @@ -22,4 +22,4 @@ export const HEADER_PADDING = "pt-[64px]"; // TODO: consider moving this to an API call so that the api_server // can be the single source of truth export const EE_ENABLED = - process.env.NEXT_PUBLIC_EE_ENABLED?.toLowerCase() === "true"; + process.env.NEXT_PUBLIC_ENABLE_PAID_EE_FEATURES?.toLowerCase() === "true";