Sha256: 91cbfce560faf07ade6e7e1af7e2c30e95919c0b8ee835f976985c1915f51e41
Contents?: true
Size: 454 Bytes
Versions: 2
Compression:
Stored size: 454 Bytes
Contents
FROM ruby:3.2.2-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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rubypitaya-3.17.1 | ./lib/rubypitaya/app-template/docker/dev/Dockerfile |
rubypitaya-3.17.0 | ./lib/rubypitaya/app-template/docker/dev/Dockerfile |