Sha256: 731a9275316f5399b840556a4fa98b08c50687d97f3020ea9a0d4f8eee300326

Contents?: true

Size: 591 Bytes

Versions: 132

Compression:

Stored size: 591 Bytes

Contents

ARG GEM_VERSION
ARG RUBY_VERSION

FROM appmap:${GEM_VERSION} as appmap

FROM ruby:${RUBY_VERSION}
RUN apt-get update && apt-get install -y vim less
RUN apt-get install -y postgresql-client

RUN mkdir /app
WORKDIR /app

RUN gem install -N bundler

COPY Gemfile .

RUN bundle
RUN bundle binstubs bundler rspec-core --force

COPY . .

COPY --from=appmap /pkg/appmap.gem /tmp/
RUN gem install /tmp/appmap.gem && \
    bundle update --local appmap && \
    bundle binstubs appmap --force

EXPOSE 3000

HEALTHCHECK --interval=1s --retries=10 CMD curl --fail http://localhost:3000/health || exit 1

Version data entries

132 entries across 106 versions & 1 rubygems

Version Path
appmap-0.28.0 spec/fixtures/rails_users_app/Dockerfile
appmap-0.27.0 spec/fixtures/rails_users_app/Dockerfile
appmap-0.26.1 spec/fixtures/rails_users_app/Dockerfile
appmap-0.26.0 spec/fixtures/rails_users_app/Dockerfile
appmap-0.25.2 spec/fixtures/rails_users_app/Dockerfile
appmap-0.25.0 spec/fixtures/rails_users_app/Dockerfile
appmap-0.23.0 spec/fixtures/rails_users_app/Dockerfile
appmap-0.22.0 spec/fixtures/rails_users_app/Dockerfile
appmap-0.21.0 spec/fixtures/rails_users_app/Dockerfile
appmap-0.20.0 spec/fixtures/rails_users_app/Dockerfile
appmap-0.19.0 spec/fixtures/rails_users_app/Dockerfile
appmap-0.18.1 spec/fixtures/rails_users_app/Dockerfile