Metadata for the ArchiveTeam Docker Hub repositories
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

10 lignes
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"]