FROM busybox:1.36 as busybox

FROM gcr.io/cloud-tagging-10302018/gtm-cloud-image:stable as deploy
COPY --from=busybox /bin/sh /bin/sh
COPY --from=busybox /bin/echo /bin/echo
COPY --from=busybox /bin/chmod /bin/chmod
COPY --from=busybox /bin/wget /bin/wget
COPY entrypoint_wrapper.sh /app/entrypoint_wrapper.sh
RUN chmod +x /app/entrypoint_wrapper.sh
ENTRYPOINT [ "/app/entrypoint_wrapper.sh" ]
CMD [ "server_bin.js" ]
