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