Sha256: f11119c145ab500fdd3c89a8321b4f887d14c12d29ca97cbf07c021ae01b045f

Contents?: true

Size: 485 Bytes

Versions: 6

Compression:

Stored size: 485 Bytes

Contents

FROM ruby:2.6.3

RUN apt-get update -qq && apt-get install -y nodejs postgresql-client

RUN mkdir /app
WORKDIR /app

COPY Gemfile /app/Gemfile
COPY Gemfile.lock /app/Gemfile.lock
COPY ./big_session /app/big_session
RUN bundle install
COPY . /app

# Add a script to be executed every time the container starts.
COPY entrypoint.sh /usr/bin/
RUN chmod +x /usr/bin/entrypoint.sh
ENTRYPOINT ["entrypoint.sh"]

EXPOSE 3000

# Start the main process.
CMD ["rails", "server", "-b", "0.0.0.0"]

Version data entries

6 entries across 3 versions & 1 rubygems

Version Path
big_session-0.1.2 examples/landing_page_app_and_core_app/app_core/Dockerfile
big_session-0.1.2 examples/landing_page_app_and_core_app/app_lp/Dockerfile
big_session-0.1.1 examples/landing_page_app_and_core_app/app_core/Dockerfile
big_session-0.1.1 examples/landing_page_app_and_core_app/app_lp/Dockerfile
big_session-0.1.0 examples/landing_page_app_and_core_app/app_core/Dockerfile
big_session-0.1.0 examples/landing_page_app_and_core_app/app_lp/Dockerfile