FROM python:3.7 COPY . /app WORKDIR /app RUN pip install -r requirments.txt EXPOSE $PORT ENTRYPOINT ["streamlit", "run"] CMD ["driverdrowziness.py"]