Sha256: aaf208789ec63acf97cc2b73757a26a9f22d00f42117e8867ad426c1ae120318
Contents?: true
Size: 427 Bytes
Versions: 51
Compression:
Stored size: 427 Bytes
Contents
ARG ALPINE_RUBY_VERSION FROM ruby:${ALPINE_RUBY_VERSION}-alpine RUN apk add --update --no-cache \ bash \ build-base \ git \ libxml2-dev \ libxslt-dev \ nodejs \ shared-mime-info \ sqlite-dev \ tzdata \ yarn RUN mkdir /app WORKDIR /app RUN gem update --system && \ gem install bundler && \ bundle config build.nokogiri --use-system-libraries COPY . . EXPOSE 3000 CMD [".docker/app/entrypoint.sh"]
Version data entries
51 entries across 51 versions & 1 rubygems