Sha256: 13d1fdde4a88825cc1bd07ce6be32b3cbc2b3c225bc5b6a3192e7aa347da20f3
Contents?: true
Size: 549 Bytes
Versions: 1
Compression:
Stored size: 549 Bytes
Contents
ARG RUBY_VERSION=2.7 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. RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \ echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list && \ apt update -y -q && \ apt install -y -q yarn sqlite3 EXPOSE 3000
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
bootstrap_form-5.1.0 | Dockerfile |