Skip to content

Commit 0cdb302

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 0cdb302

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
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 \
1111
&& apk del python3-dev gcc g++ autoconf automake libtool libffi-dev musl-dev make \
1212
&& echo "ControlPort 9051" >> /etc/tor/torrc \

0 commit comments

Comments
 (0)