You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
501 B
21 lines
501 B
|
|
FROM python |
|
|
|
WORKDIR / |
|
|
|
COPY requirements.txt . |
|
|
|
#RUN apk add --update --no-cache g++ gcc libxslt-dev |
|
|
|
RUN pip install -r requirements.txt |
|
|
|
COPY facebook/accs.py facebook/classes.py facebook/config.py facebook/helpers.py facebook/__main__.py facebook/arangodb.py facebook/scrapers.py /facebook/ |
|
|
|
ENTRYPOINT [ "python", "facebook/__main__.py" ] |
|
|
|
CMD ["",""] |
|
|
|
# BUILD: |
|
# docker buildx create --use |
|
#docker buildx build --platform linux/arm,linux/arm64,linux/amd64 -t l3224/fb-scraper:VERSION --push . |
|
|
|
|