Simon Bruder
0f7f6cbb6f
All checks were successful
continuous-integration/drone/push Build is passing
13 lines
219 B
Docker
13 lines
219 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.tmpl
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|