test/manufacturer/container/importer/Dockerfile

8 lines
261 B
Text
Raw Normal View History

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