Created
October 8, 2019 07:27
-
-
Save grohiro/d48e9d2e1a6d843d4e0b7104842a4ffa to your computer and use it in GitHub Desktop.
docker-alpine-build-tools
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| RUN apk update && \ | |
| apk upgrade && \ | |
| apk add --update --no-cache --virtual=.build-dependencies \ | |
| build-base \ | |
| curl-dev \ | |
| linux-headers \ | |
| libxml2-dev \ | |
| libxslt-dev \ | |
| postgresql-dev \ | |
| mysql-dev \ | |
| ruby-dev \ | |
| yaml-dev \ | |
| git \ | |
| zlib-dev && \ | |
| apk add --update --no-cache \ | |
| bash && \ | |
| apk del .build-dependencies |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment