Sha256: 0b291f6a3fc8b5f9cb43cdd2e7309f7cbbd31c045270f05774ee41b03c297b19
Contents?: true
Size: 476 Bytes
Versions: 2
Compression:
Stored size: 476 Bytes
Contents
FROM ruby:3.3-alpine as base RUN apk add --update --no-cache \ build-base \ cmake \ tzdata \ bash \ git ENV APP_PATH /var/www/tinybird-ruby RUN mkdir -p $APP_PATH # Build intermediate FROM base as intermediate WORKDIR $APP_PATH RUN rm -rf /var/cache/apk/* FROM base as development COPY --from=intermediate $APP_PATH $APP_PATH WORKDIR $APP_PATH ENV GEM_HOME $APP_PATH/vendor/bundle ENV BUNDLE_PATH vendor/bundle COPY . ./ RUN bundle check || bundle install
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
tinybird-0.1.1 | Dockerfile-3.3 |
tinybird-0.1.0 | Dockerfile-3.3 |