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
653 B
Docker
17 lines
653 B
Docker
FROM arm32v7/alpine:3.12@sha256:299294be8699c1b323c137f972fd0aa5eaa4b95489c213091dcf46ef39b6c810
|
|
|
|
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"]
|