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