Spaces:
Sleeping
Sleeping
FROM python:3.9.12 | |
WORKDIR /code | |
#RUN pip install --upgrade pip | |
#RUN apt-get update && apt-get install build-essential -y | |
#RUN apt-get update && apt-get install default-jdk -y | |
COPY ./requirements.txt /code/requirements.txt | |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt | |
EXPOSE 8080 | |
COPY . . | |
CMD ["streamlit", "run", "/code/app.py","address","0.0.0.0","--server.port", "7860", "syedislamuddin-agexp.hf.space"] | |