Files
wait-for-it/Dockerfile
2023-10-29 14:52:09 +00:00

11 lines
186 B
Docker

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