Metadata for the ArchiveTeam Docker Hub repositories
25개 이상의 토픽을 선택하실 수 없습니다. 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"]