Dockerfile 442 B

1234567891011121314151617181920
  1. FROM debian:latest
  2. # Install basic dependencies that might be needed
  3. RUN apt-get update && apt-get -y upgrade && apt-get clean
  4. # Copy the installer
  5. COPY install-builddir/install-usm.sh /tmp/install-usm.sh
  6. RUN chmod +x /tmp/install-usm.sh
  7. # Run the installer non-interactively
  8. RUN /tmp/install-usm.sh -y
  9. # Verify installation
  10. RUN /usr/bin/usm --help
  11. # Clean up installer
  12. RUN rm /tmp/install-usm.sh
  13. # Default command
  14. CMD ["/usr/bin/usm"]