Created
January 14, 2018 20:13
-
-
Save akoidan/51ab3521bb615c3f3b9f9a92bc1f6cdb to your computer and use it in GitHub Desktop.
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
| 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