31 lines
668 B
Docker
31 lines
668 B
Docker
FROM python:3.12-alpine
|
|
|
|
RUN apk --update --no-cache --no-progress add git gcc libffi-dev musl-dev make openssl g++ autoconf automake libtool
|
|
RUN apk add tor
|
|
|
|
RUN echo "ControlPort 9051" >> /etc/tor/torrc
|
|
RUN echo "CookieAuthentication 1" >> /etc/tor/torrc
|
|
|
|
RUN adduser -u 1600 -D service-0net
|
|
|
|
USER service-0net:service-0net
|
|
|
|
WORKDIR /home/service-0net
|
|
|
|
COPY requirements.txt .
|
|
|
|
RUN python3 -m pip install -r requirements.txt
|
|
|
|
RUN echo "tor &" > start.sh
|
|
RUN echo "python3 zeronet.py --ui_ip '*' --fileserver_port 26552" >> start.sh
|
|
RUN chmod +x start.sh
|
|
|
|
# the part below is updated with source updates
|
|
|
|
COPY . .
|
|
|
|
ENTRYPOINT ./start.sh
|
|
|
|
CMD main
|
|
|
|
EXPOSE 43110 26552
|