File size: 148 Bytes
2bab8da
 
 
 
 
 
 
1
2
3
4
5
6
7
FROM python:3.7
COPY . /app
WORKDIR /app
RUN pip install -r requirments.txt
EXPOSE $PORT
ENTRYPOINT ["streamlit", "run"]
CMD ["driverdrowziness.py"]