ai_agents / Dockerfile
jpfearnworks's picture
Decouple api key setting from router modules
26d2488
raw
history blame
241 Bytes
FROM python:3.9
WORKDIR /app
RUN pip install streamlit
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
COPY . .
WORKDIR /app/
ENV PATH="/root/.local/bin:${PATH}"
EXPOSE 8501
EXPOSE 7000
CMD python server.py