Skip to content

Commit

Permalink
fix err
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh-XT committed Jan 14, 2025
1 parent fac3b67 commit ac94e6d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
digest: ${{ steps.dockerBuild.outputs.digest }}
services:
dbservice:
image: postgres:latest
image: pgvector/pgvector:pg17
ports:
- 5432
env:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ENV PYTHONUNBUFFERED=1 \
HNSWLIB_NO_NATIVE=1 \
PATH="/usr/local/bin:$PATH" \
LD_PRELOAD=libgomp.so.1 \
LD_LIBRARY_PATH="/usr/local/lib64/:$LD_LIBRARY_PATH" \
LD_LIBRARY_PATH="/usr/local/lib64/${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}" \
DEBIAN_FRONTEND=noninteractive \
CHROME_BIN=/usr/bin/chromium \
CHROMIUM_PATH=/usr/bin/chromium \
Expand All @@ -24,7 +24,7 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
python3 python3-pip python3-dev curl postgresql-client libnss3 libnspr4 \
libatk1.0-0 libatk-bridge2.0-0 libcups2 libatspi2.0-0 libxcomposite1 nodejs \
libportaudio2 libasound-dev libreoffice unoconv poppler-utils chromium chromium-sandbox \
unixodbc unixodbc-dev && \
unixodbc unixodbc-dev cmake && \
apt-get install -y gcc-10 g++-10 && \
update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 10 && \
update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-10 10 && \
Expand Down

0 comments on commit ac94e6d

Please sign in to comment.