summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile21
1 files changed, 0 insertions, 21 deletions
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index b6d7b91..0000000
--- a/Dockerfile
+++ /dev/null
@@ -1,21 +0,0 @@
-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