mirror of
https://github.com/Crosstalk-Solutions/project-nomad.git
synced 2026-03-28 03:29:25 +01:00
7 lines
249 B
Docker
7 lines
249 B
Docker
FROM alpine:3.20
|
|
RUN apk add --no-cache util-linux bash
|
|
COPY collect-disk-info.sh /usr/local/bin/collect-disk-info.sh
|
|
RUN chmod +x /usr/local/bin/collect-disk-info.sh && mkdir -p /storage
|
|
WORKDIR /storage
|
|
CMD ["/usr/local/bin/collect-disk-info.sh"]
|