Skip to content

Instantly share code, notes, and snippets.

@twesolowski
Created July 14, 2017 10:22
Show Gist options
  • Save twesolowski/1e29187d9bdc8cecffb7de743e600691 to your computer and use it in GitHub Desktop.
Save twesolowski/1e29187d9bdc8cecffb7de743e600691 to your computer and use it in GitHub Desktop.
Docker sass
# TODO: pin versions
FROM alpine
MAINTAINER Tomasz Wesolowski "tomek@wesolowski.it"
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