Metadata for the ArchiveTeam Docker Hub repositories
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.

10 lines
275 B

  1. FROM python:3-alpine
  2. COPY . /repo
  3. RUN apk add --no-cache git gcc libxml2-dev musl-dev libxslt-dev g++ re2-dev \
  4. && ln -s /usr/include/libxml2/libxml /usr/include/libxml \
  5. && pip3 install /repo \
  6. && rm -rf /repo
  7. ENV PYTHONUNBUFFERED=1
  8. WORKDIR /data
  9. ENTRYPOINT ["snscrape"]