Spaces:
Build error
Build error
File size: 443 Bytes
7009660 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
FROM tensorflow/tensorflow:latest-gpu
WORKDIR /app
# RUN apt-get upgrade -y
RUN apt-get update -y
RUN apt-get install -y git
RUN apt install -y make wget git gcc g++ lhasa libgmp-dev libmpfr-dev libmpc-dev flex bison gettext texinfo ncurses-dev autoconf rsync
COPY ./app .
RUN pip install -r requirements.txt
RUN ls -la
#RUN python load_docs.py
RUN python run.py
CMD ["streamlit", "run", "app.py", "--server.port=8080"]
#CMD ls -la
EXPOSE 8080 |