Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/kjuly/docker-ruby-alpine-build-base
- Owner: Kjuly
- License: mit
- Created: 2024-05-07T22:11:16.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-06-18T23:48:28.000Z (7 months ago)
- Last Synced: 2024-10-30T12:12:29.262Z (3 months ago)
- Topics: alpine, build-base, bump-version, docker, ruby
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/kjuly/ruby-alpine-build-base
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.