This commit is contained in:
bel
2021-09-12 22:02:07 -06:00
commit 66c7b284a1
37 changed files with 5865 additions and 0 deletions

15
copart/python/Dockerfile Executable file
View File

@@ -0,0 +1,15 @@
# https://github.com/joyzoursky/docker-python-chromedriver
FROM python:3.7-alpine3.8
RUN echo \
"http://dl-4.alpinelinux.org/alpine/v3.8/main" >> /etc/apk/repositories \
&& echo \
"http://dl-4.alpinelinux.org/alpine/v3.8/community" >> /etc/apk/repositories
RUN apk update
RUN apk add --no-cache chromium chromium-chromedriver
RUN pip install selenium==3.13.0
WORKDIR /work
COPY . /work
CMD []
ENTRYPOINT ["python3", "./main.py"]