Ayush35's picture
Upload 11 files
2bab8da
raw
history blame contribute delete
No virus
148 Bytes
FROM python:3.7
COPY . /app
WORKDIR /app
RUN pip install -r requirments.txt
EXPOSE $PORT
ENTRYPOINT ["streamlit", "run"]
CMD ["driverdrowziness.py"]