Files
wait-for-it/Dockerfile
2024-09-24 21:46:25 +00:00

11 lines
186 B
Docker

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