Sha256: 70637e68a244ff1638fec8ed28af729763aa8b60569d6cd77a1cb19747ea32fe

Contents?: true

Size: 583 Bytes

Versions: 1

Compression:

Stored size: 583 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

1 entries across 1 versions & 1 rubygems

Version Path
rubypitaya-3.16.0 ./lib/rubypitaya/app-template/docker/dev/Dockerfile