Sha256: 851dcb8c2d777e2b113adde5296e24ea8902caf6f1b757401e1bb3ea68b4fcee
Contents?: true
Size: 454 Bytes
Versions: 9
Compression:
Stored size: 454 Bytes
Contents
FROM ruby:3.2.3-slim ENV LANG=C.UTF-8 ENV LC_ALL=C.UTF-8 RUN apt update && \ apt install -y --no-install-recommends \ git \ netcat-traditional \ libpq-dev \ build-essential \ && rm -rf /var/lib/apt/lists/* WORKDIR /app/rubypitaya/ COPY Gemfile Gemfile.lock ./ # RUN bundle config set path './vendor/bundle' && \ RUN bundle install COPY . . ENTRYPOINT ["./docker/entrypoint.sh"] CMD ["bundle", "exec", "rubypitaya", "run"]
Version data entries
9 entries across 9 versions & 1 rubygems