cmagganas's picture
Update Dockerfile
9c48483
raw
history blame
399 Bytes
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
COPY ./Tiny_Agents/src ~/app/src
CMD ["chainlit", "run", "src/UI/app.py", "--port", "7860"]