Skip to content

Commit

Permalink
More testing
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmed-tg committed Jun 6, 2024
1 parent 18d8726 commit aaddc36
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions copilot/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ WORKDIR /code
COPY requirements.txt requirements.txt

RUN apt-get update && apt-get upgrade -y
RUN pip install -r /code/requirements.txt
RUN pip install -r requirements.txt

COPY ./app /code/
COPY ./app /code/app

ENV LLM_CONFIG="/code/configs/llm_config.json"
ENV DB_CONFIG="/code/configs/db_config.json"
Expand Down
5 changes: 2 additions & 3 deletions eventual-consistency-service/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,9 @@ COPY requirements.txt requirements.txt


RUN apt-get update && apt-get upgrade -y
RUN pip install -r /code/requirements.txt
RUN pip install -r requirements.txt


COPY ./app /code/
COPY ./app /code/app

ENV LLM_CONFIG="/code/configs/llm_config.json"
ENV DB_CONFIG="/code/configs/db_config.json"
Expand Down

0 comments on commit aaddc36

Please sign in to comment.