This repository has been archived on 2020-08-13. You can view files and clone it, but cannot push or open issues/pull-requests.
aria2/http-socket/Dockerfile

10 lines
191 B
Docker

FROM alpine
RUN apk add --no-cache \
socat \
tini
EXPOSE 80
ENTRYPOINT ["tini", "--", "socat", "TCP-LISTEN:80,reuseaddr,fork,su=nobody", "UNIX-CLIENT:/var/run/nginx.sock"]