Sha256: ccdcfeb83d965dfd485d674b53616ce8e23ef879a3e5029f3d1c11aae2659127
Contents?: true
Size: 397 Bytes
Versions: 29
Compression:
Stored size: 397 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 \ sqlite-dev \ tzdata 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
29 entries across 29 versions & 1 rubygems