8 lines
No EOL
261 B
Docker
8 lines
No EOL
261 B
Docker
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 |