Skip to content

Commit

Permalink
fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
truskovskiyk committed Dec 1, 2024
1 parent 7c525f0 commit fac9a05
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ai-search-demo/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
git \
git-lfs

WORKDIR /app

RUN pip install --upgrade pip
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt

COPY . .
ENV PYTHONPATH /app/

CMD streamlit run --server.port 8000 --server.address 0.0.0.0 ai_search_demo/ui.py

0 comments on commit fac9a05

Please sign in to comment.