Sha256: c4397691e2318703b55ea5bd426ec0cdaf05e09b2d92de5ffbc85742955b0e0f
Contents?: true
Size: 733 Bytes
Versions: 27
Compression:
Stored size: 733 Bytes
Contents
FROM ruby:2.6.6 as builder WORKDIR /app/rubypitaya/ COPY Gemfile Gemfile.lock ./ RUN bundle install --without development COPY . . FROM ruby:2.6.6-slim RUN apt update && apt install -y postgresql-client --no-install-recommends RUN rm -rf /var/lib/apt/lists/* COPY --from=builder /usr/local/etc /usr/local/etc COPY --from=builder /usr/local/bundle /usr/local/bundle COPY --from=builder /usr/local/bin/ruby /usr/local/bin/ruby COPY --from=builder /usr/local/lib/ruby/gems/2.6.0 /usr/local/lib/ruby/gems/2.6.0 COPY --from=builder /app/rubypitaya /app/rubypitaya WORKDIR /app/rubypitaya/ RUN rm -rf vendor/ ENV LANG=C.UTF-8 ENV LC_ALL=C.UTF-8 ENTRYPOINT ["./docker/entrypoint.sh"] CMD ["bundle", "exec", "rubypitaya", "run"]
Version data entries
27 entries across 27 versions & 1 rubygems