This repository has been archived on 2021-09-23. You can view files and clone it, but cannot push or open issues or pull requests.
hidden-service/Dockerfile

23 lines
701 B
Docker
Raw Normal View History

2021-01-27 17:13:48 +00:00
ARG ARCH
FROM amd64/alpine:3.13.5@sha256:def822f9851ca422481ec6fee59a9966f12b351c62ccb9aca841526ffaa9f748 AS base-amd64
FROM arm32v7/alpine:3.13.5@sha256:9663906b1c3bf891618ebcac857961531357525b25493ef717bca0f86f581ad6 AS base-arm
FROM arm64v8/alpine:3.13.5@sha256:8f18fae117ec6e5777cc62ba78cbb3be10a8a38639ccfb949521abd95c8301a4 AS base-arm64
2021-01-27 17:13:48 +00:00
FROM base-${ARCH}
2021-01-27 18:45:31 +00:00
RUN adduser -D -h /usr/local/tor -s /bin/false tor tor && \
2021-01-27 22:41:37 +00:00
apk upgrade --no-cache && apk add \
2021-05-27 07:01:02 +00:00
curl="7.77.0-r0" \
2021-03-17 05:01:14 +00:00
tor="0.4.4.8-r0" && \
2021-01-27 18:45:31 +00:00
rm -f /var/cache/apk/* && \
mkdir /web && \
chown -R tor /web /etc/tor && \
chmod 700 /web
2021-01-27 17:13:48 +00:00
COPY entrypoint.sh /
VOLUME /web
USER tor
2021-01-27 18:45:31 +00:00
ENTRYPOINT ["sh", "/entrypoint.sh"]