Sign inSign up

kjuly/ruby-alpine-build-base

By kjuly

Updated over 2 years ago

Alpine-based Ruby Docker image with build-base installed.

Image
Developer tools
0

1.1K

kjuly/ruby-alpine-build-base repository overview

Source Code: https://github.com/Kjuly/docker-ruby-alpine-build-base

Usage

e.g., You can replace

FROM ruby:3.3.1-alpine
...
RUN apk add --no-cache build-base && \
    bundle install --no-cache && \
    ...
    apk del --purge -r build-base

with

FROM kjuly/ruby-alpine-build-base:latest
...
RUN bundle install --no-cache && \
    ...
    apk del --purge -r build-base

to save time on pkg build-base installation during your Docker image testing, especially when your local network is not good enough.

Tag summary

Content type

Image

Digest

sha256:41f083e24

Size

115.4 MB

Last updated

over 2 years ago

docker pull kjuly/ruby-alpine-build-base