Sha256: 72682461909f365d51c5e0a6c9b5f89496c4de81c08ffdeed710dfd0443b7b25
Contents?: true
Size: 573 Bytes
Versions: 7
Compression:
Stored size: 573 Bytes
Contents
ARG RUBY_VERSION=3.0 ARG DISTRO=bullseye FROM ruby:$RUBY_VERSION-$DISTRO RUN mkdir -p /app ENV HOME /app WORKDIR /app ENV GEM_HOME $HOME/vendor/bundle ENV BUNDLE_APP_CONFIG="$GEM_HOME" ENV PATH ./bin:$GEM_HOME/bin:$PATH RUN (echo 'docker'; echo 'docker') | passwd root # Yarn installs nodejs. # Rails wants a newer version of node that we get with the Debian distro. RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash - && apt-get install -y nodejs RUN corepack enable && corepack prepare yarn@stable --activate RUN apt install -y -q yarn sqlite3 EXPOSE 3000
Version data entries
7 entries across 7 versions & 1 rubygems