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