Merge pull request #21 from topoteretes/fix_docker
Fixes and added command line tool to run RAG
This commit is contained in:
commit
72490dbcf5
1 changed files with 17 additions and 4 deletions
|
|
@ -18,11 +18,24 @@ RUN poetry config virtualenvs.create false && \
|
|||
poetry install --no-root --no-dev
|
||||
|
||||
RUN apt-get update -q && \
|
||||
apt-get install curl zip jq netcat-traditional -y -q
|
||||
RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" && \
|
||||
unzip -qq awscliv2.zip && ./aws/install && \
|
||||
apt-get install -y -q \
|
||||
gcc \
|
||||
python3-dev \
|
||||
curl \
|
||||
zip \
|
||||
jq \
|
||||
netcat-traditional && \
|
||||
pip install poetry && \
|
||||
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" && \
|
||||
unzip -qq awscliv2.zip && \
|
||||
./aws/install && \
|
||||
apt-get clean && \
|
||||
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
||||
rm -rf \
|
||||
awscliv2.zip \
|
||||
/var/lib/apt/lists/* \
|
||||
/tmp/* \
|
||||
/var/tmp/*
|
||||
|
||||
|
||||
|
||||
#RUN playwright install
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue