Created
September 16, 2018 20:13
-
-
Save jlandure/34b3914d7c51e9c137931be928d63593 to your computer and use it in GitHub Desktop.
apk command
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 add --no-cache git | |
| RUN apk add --no-cache --virtual .build-deps \ | |
| g++ \ | |
| make \ | |
| python \ | |
| && npm --quiet install --global node-sass \ | |
| && apk del .build-deps \ | |
| && rm -rf /tmp/* | |
| && rm -rf /var/lib/apt/lists/* \ | |
| /var/cache/apk/* \ | |
| /usr/share/man \ | |
| /tmp/* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment