| 1234567891011121314151617181920 |
- FROM debian:latest
- # Install basic dependencies that might be needed
- RUN apt-get update && apt-get -y upgrade && apt-get clean
- # Copy the installer
- COPY install-builddir/install-usm.sh /tmp/install-usm.sh
- RUN chmod +x /tmp/install-usm.sh
- # Run the installer non-interactively
- RUN /tmp/install-usm.sh -y
- # Verify installation
- RUN /usr/bin/usm --help
- # Clean up installer
- RUN rm /tmp/install-usm.sh
- # Default command
- CMD ["/usr/bin/usm"]
|