8 lines
261 B
Text
8 lines
261 B
Text
|
|
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
|