Files
wait-for-it/Dockerfile
2023-09-01 23:03:03 +00:00

11 lines
186 B
Docker

FROM alpine:3.18.3
RUN --mount=type=cache,target=/var/cache/apk \
set -e \
&& apk add --update-cache \
bash
COPY wait-for-it.sh /bin/
ENTRYPOINT ["/bin/wait-for-it.sh"]