ai-set-demo / Dockerfile
lijiacai's picture
Update Dockerfile
d456e9b
raw
history blame contribute delete
434 Bytes
FROM python:3.9-buster
RUN apt-get install -y git
RUN mkdir /app
RUN git clone https://github.com/ai-auto-factory/ai-set-demo.git && mv ai-set-demo/* /app/
RUN pip install --no-cache --upgrade pip
RUN pip install --no-cache --timeout=120 -r /app/requirements.txt
WORKDIR /app
RUN chmod 777 /app/_secret_auth_.json
EXPOSE 7860
CMD ["python", "-m","streamlit","run","app.py","--server.port","7860","--server.address","0.0.0.0"]