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
- Host: GitHub
- URL: https://github.com/holms/docker-ruby-ree-alpine
- Owner: holms
- Created: 2017-04-26T00:00:23.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-04-30T21:55:45.000Z (about 9 years ago)
- Last Synced: 2025-10-07T00:23:40.626Z (9 months ago)
- Language: Makefile
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```