Niv03's picture
edit dockerfile
1f8d218
raw
history blame
167 Bytes
FROM python
WORKDIR /app
COPY . /app
RUN pip install --trusted-host pypi.python.org -r requirements.txt
RUN chmod 777 /.cache
CMD ["streamlit", "run", "app.py"]