Sha256: b57df9519f46c1fcb6469a358cee0941c6e09e283fdf99ae2238908a8c863af6
Contents?: true
Size: 925 Bytes
Versions: 5
Compression:
Stored size: 925 Bytes
Contents
FROM ruby:2.7.4 ENV APP_PATH /app/ ENV LANG C.UTF-8 WORKDIR $APP_PATH 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 \ && curl -sL https://deb.nodesource.com/setup_14.x | bash - \ && apt-get update -qqy \ && apt-get install -y --no-install-recommends nodejs yarn \ && rm -rf /var/lib/apt/lists/* /var/cache/apt/* # Add codebase ADD . $APP_PATH # Install gems ADD lcms-engine.gemspec $APP_PATH ADD Gemfile* $APP_PATH RUN gem install bundler \ && bundle install --jobs `expr $(cat /proc/cpuinfo | grep -c "cpu cores") - 1` --retry 3 \ && rm -rf /usr/local/bundle/cache/*.gem \ && find /usr/local/bundle/gems/ -name "*.c" -delete \ && find /usr/local/bundle/gems/ -name "*.o" -delete # Install yarn packages COPY package.json yarn.lock $APP_PATH RUN yarn install
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
lcms-engine-0.5.1 | Dockerfile |
lcms-engine-0.5.0 | Dockerfile |
lcms-engine-0.4.2 | Dockerfile |
lcms-engine-0.4.1 | Dockerfile |
lcms-engine-0.4.0 | Dockerfile |