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

https://github.com/holms/docker-ruby-ree-alpine

Alpine based ruby ree version
https://github.com/holms/docker-ruby-ree-alpine

Last synced: 4 months ago
JSON representation

Alpine based ruby ree version

Awesome Lists containing this project

README

          

# ruby-ree-alpine

Alpine version of Ruby enterprise edition.

This images is minified as much as possible, everything happens in one layer!
So if you want to use it keep it at minimum futher you need to do the same with your futher builds:
```
RUN apk update \
&& apk add --update alpine-sdk zlib-dev openssl-dev readline-dev \
&& apk del alpine-sdk ruby zlib-dev openssl-dev readline-dev \
&& \
&& rm -rf /var/cache/apk
```