wait-for/docker/Dockerfile.arm64
2021-08-06 20:13:34 +00:00

17 lines
653 B
Docker

FROM arm64v8/alpine:3.14@sha256:bd9137c3bb45dbc40cde0f0e19a8b9064c2bc485466221f5e95eb72b0d0cf82e
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"]