master
text 8 lines 183 Bytes
Raw
1 FROM registry:3
2
3 RUN apk add --no-cache apache2-utils
4
5 COPY entrypoint.sh /entrypoint.sh
6 RUN sed -i 's/\r$//' /entrypoint.sh && chmod +x /entrypoint.sh
7
8 ENTRYPOINT ["/entrypoint.sh"]