Skip to content

Commit 0ae9f6e

Browse files
authored
Merge pull request onyx-dot-app#2746 from danswer-ai/hotfix/v0.7-docker-kv-deprecation
Merge hotfix/v0.7-docker-kv-deprecation into release/v0.7
2 parents 1f0af86 + 906d77e commit 0ae9f6e

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

backend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ COPY ./scripts/force_delete_connector_by_id.py /app/scripts/force_delete_connect
101101
# Put logo in assets
102102
COPY ./assets /app/assets
103103

104-
ENV PYTHONPATH /app
104+
ENV PYTHONPATH=/app
105105

106106
# Default command which does nothing
107107
# This container is used by api server and background which specify their own CMD

backend/Dockerfile.model_server

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,6 @@ COPY ./shared_configs /app/shared_configs
5555
# Model Server main code
5656
COPY ./model_server /app/model_server
5757

58-
ENV PYTHONPATH /app
58+
ENV PYTHONPATH=/app
5959

6060
CMD ["uvicorn", "model_server.main:app", "--host", "0.0.0.0", "--port", "9000"]

backend/tests/integration/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,6 @@ RUN pip install --no-cache-dir --upgrade \
8181
-r /tmp/dev-requirements.txt
8282
COPY ./tests/integration /app/tests/integration
8383

84-
ENV PYTHONPATH /app
84+
ENV PYTHONPATH=/app
8585

8686
CMD ["pytest", "-s", "/app/tests/integration"]

web/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ COPY . .
2525
RUN npm ci
2626

2727
# needed to get the `standalone` dir we expect later
28-
ENV NEXT_PRIVATE_STANDALONE true
28+
ENV NEXT_PRIVATE_STANDALONE=true
2929

3030
# Disable automatic telemetry collection
31-
ENV NEXT_TELEMETRY_DISABLED 1
31+
ENV NEXT_TELEMETRY_DISABLED=1
3232

3333
# Environment variables must be present at build time
3434
# https://github.com/vercel/next.js/discussions/14030
@@ -77,7 +77,7 @@ RUN rm -rf /usr/local/lib/node_modules
7777
# ENV NODE_ENV production
7878

7979
# Disable automatic telemetry collection
80-
ENV NEXT_TELEMETRY_DISABLED 1
80+
ENV NEXT_TELEMETRY_DISABLED=1
8181

8282
# Don't run production as root
8383
RUN addgroup --system --gid 1001 nodejs

0 commit comments

Comments
 (0)