1
0
Fork 0
host-port-ingress-proxy/Dockerfile

5 lines
184 B
Docker

FROM nginx:alpine
COPY nginx.conf /etc/nginx/nginx.conf.template
COPY docker-entrypoint.sh /docker-entrypoint.sh
RUN chmod +x /docker-entrypoint.sh
ENTRYPOINT ["/docker-entrypoint.sh"]