2.3.3-r0 release

This release updates requirements and adds support for different release series in GitHub
This commit is contained in:
Bitnami Bot
2017-02-21 12:37:33 +00:00
parent 9a54cc2373
commit aa94971f18
5 changed files with 46 additions and 1 deletions

View File

@@ -0,0 +1 @@
.git/

View File

@@ -0,0 +1,23 @@
FROM gcr.io/stacksmith-images/minideb-buildpack:jessie-r10
MAINTAINER Bitnami <containers@bitnami.com>
# System packages required
RUN install_packages libc6 libssl1.0.0 zlib1g libreadline6 libncurses5 libtinfo5 libffi6 libxml2-dev zlib1g-dev libxslt1-dev libgmp-dev ghostscript imagemagick libmysqlclient18 libpq5
RUN bitnami-pkg unpack ruby-2.3.3-2 --checksum 8c1533927a9cfb3b1dfb6cbd3e24c33d1f670f104e6d4c1942776525db9e4729
COPY rootfs /
ENV PATH=/opt/bitnami/ruby/bin:$PATH
ENV BITNAMI_APP_NAME=ruby \
BITNAMI_IMAGE_VERSION=2.3.3-r0
WORKDIR /app
EXPOSE 3000
ENTRYPOINT ["/app-entrypoint.sh"]
CMD ["irb"]

View File

@@ -0,0 +1,11 @@
version: '2'
services:
ruby:
tty: true # Enables debugging capabilities when attached to this container.
image: bitnami/ruby:2.3
# command: sh -c 'bundle install && bundle exec rails server -b 0.0.0.0 -p 3000'
ports:
- 3000:3000
volumes:
- .:/app

View File

@@ -0,0 +1,10 @@
#!/bin/bash -e
. /opt/bitnami/base/functions
. /opt/bitnami/base/helpers
print_welcome_page
check_for_updates &
nami_initialize ruby
exec tini -- "$@"

View File

@@ -2,7 +2,7 @@ machine:
services:
- docker
environment:
RELEASE_SERIES_LIST: 2.4
RELEASE_SERIES_LIST: 2.3,2.4
LATEST_STABLE: 2.4
IMAGE_NAME: ruby
CHART_NAME: ruby