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