summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 881abb897025756d22d93a12e23e3f32887e6c6c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
FROM alpine:3.13

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