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