Files
wait-for-it/Dockerfile
2024-06-27 21:48:41 +00:00

11 lines
186 B
Docker

FROM alpine:3.20.1
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"]