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"]