test/manufacturer/container/importer/Dockerfile

8 lines
No EOL
261 B
Docker
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

FROM alpine:3.21
# Устанавливаю BASH и CURL для работы с API графаны
RUN apk add --no-cache bash curl
COPY manufacturer/container/importer/scripts/wait_for_it.sh /usr/local/bin/wait-for-it
RUN chmod +x /usr/local/bin/wait-for-it