1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
FROM alpine:3.14 RUN apk update && apk upgrade && apk add \ gcc \ g++ \ libsass-dev \ musl-dev \ make \ git \ libtool \ autoconf \ automake \ m4 RUN git clone https://github.com/sass/sassc.git \ && cd sassc \ && autoreconf -i \ && mkdir x \ && cd x \ && ../configure \ && make -j$(nproc) install