Files
containers/bitnami/ruby/Dockerfile
Sameer Naik a2c8308317 Stacksmith merger (#27)
* switch to harpoon installer

* removed unused `installer.run.sha256`

* bump version to 2.3.0-1

* added sha256 hash for package verification

* switch to `gcr.io/stacksmith-images/ubuntu-buildpack:14.04` base image

* removed unused files

* switch to `gcr.io/stacksmith-images/ubuntu:14.04-r05` base image

* organize dockerfile for stacksmith (#2)

* verify checksum in harpoon commands
* removed `BITNAMI_APP_DIR` macro
* updated `PATH` variable
* organize dockerfile for stacksmith
* removed unused `BITNAMI_APP_USER` macro

* bump to ruby-2.3.0-6 (#3)

* cleanup

* update to ruby-2.3.1-0 (#4)

* upgrade to `gcr.io/stacksmith-images/ubuntu:14.04-r06`

* upgrade to ruby-2.3.1-0

* updated readme

* update harpoon module to ruby-2.3.1-1 (#5)

* upgrade to ruby-2.3.1-1

* cleanup dockerfile

* removed redundant `app-entrypoint.sh` script

* ignore `pkg-cache/` in git

* ignore `.git/` in docker builds

* readme: updates

* readme: added note about removal of `USER` instruction

* add `imagemagick` and `mysql-libraries` harpoon modules

* upgrade to `gcr.io/stacksmith-images/ubuntu:14.04-r07` baseimage

* readme: mention docker daemon user namespace support

* updated TLDR to launch `irb` from docker-cli

* readme: import cwd as `/app` volume in `docker-compose` examples
2016-05-19 10:33:37 -07:00

18 lines
667 B
Docker

FROM gcr.io/stacksmith-images/ubuntu-buildpack:14.04-r07
MAINTAINER Bitnami <containers@bitnami.com>
ENV BITNAMI_IMAGE_VERSION=2.3.1-r0 \
BITNAMI_APP_NAME=ruby
RUN bitnami-pkg install ruby-2.3.1-1 --checksum a81395976c85e8b7c8da3c1db6385d0e909bd05d9a3c1527f8fa36b8eb093d84
ENV PATH=/opt/bitnami/$BITNAMI_APP_NAME/bin:/opt/bitnami/sqlite/bin:/opt/bitnami/common/bin:$PATH
RUN bitnami-pkg install imagemagick-6.7.5-10-3 --checksum 617e85a42c80f58c568f9bc7337e24c03e35cf4c7c22640407a7e1e16880cf88
RUN bitnami-pkg install mysql-libraries-10.1.13-0 --checksum 71ca428b619901123493503f8a99ccfa588e5afddd26e0d503a32cca1bc2a389
CMD ["irb"]
WORKDIR /app
EXPOSE 3000