Dockerfile 286 B

1234567891011121314
  1. FROM debian:latest
  2. # Copy the installer
  3. COPY install-builddir/install-usm.sh /tmp/install-usm.sh
  4. RUN chmod +x /tmp/install-usm.sh
  5. # Run the installer non-interactively
  6. RUN /tmp/install-usm.sh -y
  7. # Clean up installer
  8. RUN rm /tmp/install-usm.sh
  9. # Default command
  10. CMD ["/usr/bin/usm"]