Sha256: edfa2f8ed56320e23ca7fe0fbf4807e36c9b0ca984e20840e8160ed4b9b4155d

Contents?: true

Size: 581 Bytes

Versions: 17

Compression:

Stored size: 581 Bytes

Contents

FROM ruby:3.1.3-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 config set path './vendor/bundle' && \
    bundle install

COPY . .

ENTRYPOINT ["./docker/entrypoint.sh"]

CMD ["bundle", "exec", "rubypitaya", "run"]

Version data entries

17 entries across 13 versions & 1 rubygems

Version Path
rubypitaya-3.15.3 ./lib/rubypitaya/app-template/docker/dev/Dockerfile
rubypitaya-3.15.2 ./lib/rubypitaya/app-template/docker/dev/Dockerfile
rubypitaya-3.15.1 ./lib/rubypitaya/app-template/docker/dev/Dockerfile
rubypitaya-3.15.0 ./lib/rubypitaya/app-template/docker/dev/Dockerfile
rubypitaya-3.14.0 ./lib/rubypitaya/app-template/docker/dev/Dockerfile
rubypitaya-3.13.1 ./lib/rubypitaya/app-template/docker/dev/Dockerfile
rubypitaya-3.13.0 ./lib/rubypitaya/app-template/docker/dev/Dockerfile
rubypitaya-3.12.5 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/rubypitaya-3.12.1/lib/rubypitaya/app-template/docker/dev/Dockerfile
rubypitaya-3.12.5 ./lib/rubypitaya/app-template/docker/dev/Dockerfile
rubypitaya-3.12.4 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/rubypitaya-3.12.1/lib/rubypitaya/app-template/docker/dev/Dockerfile
rubypitaya-3.12.4 ./lib/rubypitaya/app-template/docker/dev/Dockerfile
rubypitaya-3.12.3 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/rubypitaya-3.12.1/lib/rubypitaya/app-template/docker/dev/Dockerfile
rubypitaya-3.12.3 ./lib/rubypitaya/app-template/docker/dev/Dockerfile
rubypitaya-3.12.2 ./lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/rubypitaya-3.12.1/lib/rubypitaya/app-template/docker/dev/Dockerfile
rubypitaya-3.12.2 ./lib/rubypitaya/app-template/docker/dev/Dockerfile
rubypitaya-3.12.1 ./lib/rubypitaya/app-template/docker/dev/Dockerfile
rubypitaya-3.12.0 ./lib/rubypitaya/app-template/docker/dev/Dockerfile