File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1
1
FROM alpine:3.12
2
-
3
2
ARG GITHUB_TOKEN=""
4
3
5
4
RUN apk add bash python3 git expect py3-pip g++ libc-dev python3-dev linux-headers
6
5
RUN pip3 install html5lib
7
6
RUN pip3 install Brotli
8
7
RUN pip3 install psutil
9
8
RUN pip3 install dataclasses-json
9
+ RUN pip3 install Jinja2
10
10
11
11
WORKDIR /
12
12
13
- COPY build_cats.py /
14
- COPY dcachebase.py /
13
+ COPY *.py /
15
14
COPY dcache.py /
16
15
ADD scrapscrap /
17
16
COPY scrapscrap /scrapscrap
18
17
19
18
COPY build/build-html-in-docker.sh /
20
19
COPY build/ex /
21
20
22
- COPY description_cache.json /
21
+ COPY *.json /
22
+ COPY *.template /
23
+ COPY flag_list.txt /
23
24
24
25
CMD GITHUB_TOKEN=${GITHUB_TOKEN} ./build-html-in-docker.sh
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ RUN apk add bash python3 git expect py3-pip
6
6
RUN pip3 install python-geoip
7
7
RUN pip3 install python-geoip-geolite2
8
8
RUN pip3 install maxminddb
9
- RUN pip3 install maxminddb-geolite2K
9
+ RUN pip3 install maxminddb-geolite2
10
10
RUN pip3 install dataclasses-json
11
11
12
12
You can’t perform that action at this time.
0 commit comments