File size: 407 Bytes
2b47b15
 
 
 
 
 
 
 
9c48483
2b47b15
ea042b6
aeb57f7
2b47b15
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM python:3.11.4
RUN useradd -m -u 1000 user
USER user
ENV HOME=/home/user \
    PATH=/home/user/.local/bin:$PATH
WORKDIR $HOME/app
COPY --chown=user . $HOME/app
COPY ./requirements2.txt ~/app/requirements2.txt
RUN git clone https://github.com/PanoEvJ/Tiny_Agents.git
RUN pip install -r requirements2.txt
RUN cd Tiny_Agents 
COPY ./src ~/app/src

CMD ["chainlit", "run", "src/UI/app.py", "--port", "7860"]