mirror of
https://github.com/thegeeklab/wait-for.git
synced 2024-11-14 17:00:38 +00:00
e1cae8b746
Co-authored-by: Renovate Bot <bot@renovateapp.com>
17 lines
651 B
Docker
17 lines
651 B
Docker
FROM amd64/alpine:3.12@sha256:074d3636ebda6dd446d0d00304c4454f468237fdacf08fb0eeac90bdbfa1bac7
|
|
|
|
LABEL maintainer="Robert Kaussow <mail@thegeeklab.de>"
|
|
LABEL org.opencontainers.image.authors="Robert Kaussow <mail@thegeeklab.de>"
|
|
LABEL org.opencontainers.image.title="wait-for"
|
|
LABEL org.opencontainers.image.url="https://github.com/thegeeklab/wait-for"
|
|
LABEL org.opencontainers.image.source="https://github.com/thegeeklab/wait-for"
|
|
LABEL org.opencontainers.image.documentation="https://github.com/thegeeklab/wait-for"
|
|
|
|
ADD wait-for /usr/local/bin/wait-for
|
|
|
|
RUN apk --no-cache add netcat-openbsd
|
|
|
|
USER root
|
|
CMD []
|
|
ENTRYPOINT ["/usr/local/bin/wait-for"]
|