Spaces:
Runtime error
Runtime error
File size: 422 Bytes
93dc773 |
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 |
FROM python:3.10-slim
WORKDIR /app
COPY . /app
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
netbase \
&& rm -rf /var/lib/apt/lists/*
RUN pip3 install -r requirements.txt
ARG GOOGLE_API_KEY1
ENV GOOGLE_API_KEY=$GOOGLE_API_KEY1
ARG LANGCHAIN_API_KEY1
ENV LANGCHAIN_API_KEY=$LANGCHAIN_API_KEY1
EXPOSE 8000
ENTRYPOINT ["chainlit", "run"]
CMD ["app.py"] |