File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,8 @@ ARG ONYX_VERSION=0.0.0-dev
12
12
# DO_NOT_TRACK is used to disable telemetry for Unstructured
13
13
ENV ONYX_VERSION=${ONYX_VERSION} \
14
14
DANSWER_RUNNING_IN_DOCKER="true" \
15
- DO_NOT_TRACK="true"
15
+ DO_NOT_TRACK="true" \
16
+ PLAYWRIGHT_BROWSERS_PATH="/app/.cache/ms-playwright"
16
17
17
18
18
19
RUN echo "ONYX_VERSION: ${ONYX_VERSION}"
Original file line number Diff line number Diff line change @@ -3,6 +3,9 @@ FROM python:3.11.7-slim-bookworm
3
3
# Currently needs all dependencies, since the ITs use some of the Onyx
4
4
# backend code.
5
5
6
+ # Needed for playwright to work
7
+ ENV PLAYWRIGHT_BROWSERS_PATH="/app/.cache/ms-playwright"
8
+
6
9
# Install system dependencies
7
10
# cmake needed for psycopg (postgres)
8
11
# libpq-dev needed for psycopg (postgres)
You can’t perform that action at this time.
0 commit comments