13 lines
214 B
Docker
13 lines
214 B
Docker
|
FROM alpine
|
||
|
|
||
|
RUN apk add --no-cache \
|
||
|
nginx \
|
||
|
su-exec \
|
||
|
tor
|
||
|
|
||
|
COPY torrc /etc/tor/torrc
|
||
|
COPY nginx.conf /etc/nginx/nginx.conf
|
||
|
COPY entrypoint.sh /entrypoint.sh
|
||
|
|
||
|
ENTRYPOINT ["/entrypoint.sh"]
|