Skip to content

Commit 5b00af9

Browse files
committed
Update dockerfile to latest version
Use of a current Alpine version and therefore a more current Tor version. Furthermore, git was added as a dependency, as this is necessary to install all required pip packages. Signed-off-by: Marek Küthe <m.k@mk16.de>
1 parent 2900259 commit 5b00af9

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
FROM alpine:3.15
1+
FROM alpine:3.18
22

33
#Base settings
44
ENV HOME /root
55

66
COPY requirements.txt /root/requirements.txt
77

88
#Install ZeroNet
9-
RUN apk --update --no-cache --no-progress add python3 python3-dev py3-pip gcc g++ autoconf automake libtool libffi-dev musl-dev make tor openssl \
9+
RUN apk --update --no-cache --no-progress add python3 python3-dev py3-pip gcc g++ autoconf automake libtool libffi-dev musl-dev make tor openssl git \
1010
&& pip3 install -r /root/requirements.txt \
11-
&& apk del python3-dev gcc g++ autoconf automake libtool libffi-dev musl-dev make \
11+
&& apk del python3-dev gcc g++ autoconf automake libtool libffi-dev musl-dev make git \
1212
&& echo "ControlPort 9051" >> /etc/tor/torrc \
1313
&& echo "CookieAuthentication 1" >> /etc/tor/torrc
1414

0 commit comments

Comments
 (0)