install.sh 334 B

1234567891011
  1. #!/bin/sh
  2. # Copy some file from the repository root to the rootfs.
  3. install -D -m 755 examples/hello_world.rb /app/hello_world.rb
  4. # Install some dev packages and gem mailcatcher.
  5. apk add --no-progress -t .make build-base ruby-dev sqlite-dev
  6. gem install --no-document mailcatcher
  7. # Clean-up dev packages.
  8. apk del --no-progress .make