Fixes and added command line tool to run RAG
This commit is contained in:
parent
a561dc035c
commit
c701e6a4b3
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
|
poetry install --no-root --no-dev
|
||||||
|
|
||||||
RUN apt-get update -q && \
|
RUN apt-get update -q && \
|
||||||
apt-get install curl zip jq netcat-traditional -y -q
|
apt-get install -y -q \
|
||||||
RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" && \
|
gcc \
|
||||||
unzip -qq awscliv2.zip && ./aws/install && \
|
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 && \
|
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
|
#RUN playwright install
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue