mirror of
https://github.com/Crosstalk-Solutions/project-nomad.git
synced 2026-03-28 03:29:25 +01:00
16 lines
377 B
Docker
16 lines
377 B
Docker
FROM alpine:3.20
|
|
|
|
# Install Docker CLI for compose operations
|
|
RUN apk add --no-cache docker-cli docker-cli-compose bash
|
|
|
|
# Copy the update watcher script
|
|
COPY update-watcher.sh /usr/local/bin/update-watcher.sh
|
|
RUN chmod +x /usr/local/bin/update-watcher.sh
|
|
|
|
# Create shared communication directory
|
|
RUN mkdir -p /shared
|
|
|
|
WORKDIR /shared
|
|
|
|
CMD ["/usr/local/bin/update-watcher.sh"]
|