Created
July 14, 2017 10:22
-
-
Save twesolowski/1e29187d9bdc8cecffb7de743e600691 to your computer and use it in GitHub Desktop.
Docker sass
This file contains 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
# TODO: pin versions | |
FROM alpine | |
MAINTAINER Tomasz Wesolowski "[email protected]" | |
RUN set -ex \ | |
&& apk add --update --no-cache ruby \ | |
&& apk add --update --no-cache --virtual build-dependencies \ | |
build-base \ | |
ruby-dev \ | |
libffi-dev \ | |
&& gem install --no-document \ | |
json \ | |
compass \ | |
&& apk del build-dependencies | |
ENTRYPOINT ["sass"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment