diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..881abb8 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,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 |