tst / Dockerfile
ahmetalper's picture
Update Dockerfile
864a891 verified
raw
history blame
No virus
130 Bytes
FROM python:3.9
RUN chmod 777 /app
RUN pip install chromedriver
RUN seleniumbase get chromedriver
CMD ["python", "app/main.py"]