Spaces:
Runtime error
Runtime error
File size: 576 Bytes
f32ea8f fd1d1a5 12c2c07 a651f3e fd1d1a5 a651f3e f32ea8f a651f3e d2dc6fa |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
FROM python:3.9
FROM node:19-slim
RUN apt-get update && \
apt-get install -y \
bash \
git git-lfs \
wget curl procps \
htop vim nano && \
rm -rf /var/lib/apt/lists/*
# RUN useradd -m -u 1000 user
# USER user
# ENV HOME=/home/user \
# PATH=/home/user/.local/bin:$PATH
WORKDIR /app
COPY --link ./ /app
RUN npm i
RUN chown 1000 /app
USER 1000
# COPY --chown=user . $HOME/app
# COPY ./requirements.txt ~/app/requirements.txt
RUN pip install -r requirements.txt
# COPY . .
CMD ["chainlit", "run", "chain_app.py", "--port", "7860" ,"-h"] |