| 1234567891011121314 |
- FROM postfix
- RUN apt update -y
- RUN apt upgrade -y
- RUN apt update -y
- RUN apt install -y procps
- RUN apt install -y nginx-full
- COPY proxy.conf /etc/nginx/conf.d
- COPY fixssl.conf /etc/nginx/conf.d
- COPY nginx.conf /etc/nginx
- COPY proxy.sh /root/
- RUN chmod a+x /root/proxy.sh
- #CMD ['/usr/bin/nginx',]
- ENTRYPOINT ['/bin/bash','/root/proxy.sh']
|