Skip to content

Instantly share code, notes, and snippets.

@akoidan
Created January 14, 2018 20:13
Show Gist options
  • Select an option

  • Save akoidan/51ab3521bb615c3f3b9f9a92bc1f6cdb to your computer and use it in GitHub Desktop.

Select an option

Save akoidan/51ab3521bb615c3f3b9f9a92bc1f6cdb to your computer and use it in GitHub Desktop.
WORKDIR /usr/src/sass
#COPY requirements.txt ./
#RUN pip install --no-cache-dir -r requirements.txt
RUN apt-get update -qq
RUN apt-get install -y curl git build-essential automake libtool
RUN git clone https://github.com/sass/libsass.git
RUN git clone https://github.com/sass/sassc.git libsass/sassc
WORKDIR /usr/src/sass/libsass
RUN autoreconf --force --install
WORKDIR /usr/src/sass
RUN make -C libsass -j5
RUN make -C libsass -j5 install
WORKDIR /usr/src/sass/libsass
RUN make -C sassc -j5
RUN make -C sassc -j5 install
RUN sleep 1000
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment