We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3c1d24 commit 612399dCopy full SHA for 612399d
Dockerfile
@@ -1,15 +1,7 @@
1
-# grab-site
2
-#
3
-# VERSION 0.0.1
4
-
5
-FROM lnl7/nix:2.3.7
6
-ENV TZ=Etc/UTC
7
-LABEL Description="Install and run the grab-site program via Nix" Vendor="ArchiveTeam/ArchiveBot" Version="0.0.1"
8
-EXPOSE 29000/tcp
9
10
-RUN nix-env -iA \
11
- nixpkgs.bash \
12
- nixpkgs.grab-site
13
14
-CMD gs-server & \
15
- grab-site 'https://community.fantasyflightgames.com/'
+FROM python:3.7.9-alpine
+RUN apk add --no-cache git gcc libxml2-dev musl-dev libxslt-dev g++ re2-dev libffi-dev patch openssl-dev \
+ && ln -s /usr/include/libxml2/libxml /usr/include/libxml \
+ && python -m pip install -U pip \
+ && pip3 install git+https://github.com/ArchiveTeam/grab-site.git
+WORKDIR /data
+ENTRYPOINT ["grab-site"]
0 commit comments