Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kjuly/docker-ruby-alpine-build-base

Alpine-based Ruby Docker image with build-base installed.
https://github.com/kjuly/docker-ruby-alpine-build-base

alpine build-base bump-version docker ruby

Last synced: about 1 month ago
JSON representation

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

Awesome Lists containing this project

README

        

# docker-ruby-alpine-build-base
Alpine-based Ruby Docker image with build-base installed.

## Usage

e.g., You can replace

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

with

```yaml
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.