agexp / Dockerfile
syedislamuddin's picture
Update Dockerfile
1cd6f45
raw
history blame contribute delete
437 Bytes
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"]