Niv03's picture
edit dockerfile
f163586
raw
history blame contribute delete
248 Bytes
FROM python
WORKDIR /app
RUN chmod 777 /app
COPY . /app
RUN pip install --trusted-host pypi.python.org -r requirements.txt
RUN mkdir /.cache
RUN chmod 777 /.cache
CMD ["streamlit", "run", "app.py", "--server.enableXsrfProtection", "false"]