summaryrefslogtreecommitdiff
path: root/vendor/github.com/tdewolff/minify/v2/Dockerfile
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2022-07-19 15:21:17 +0200
committerLibravatar GitHub <noreply@github.com>2022-07-19 15:21:17 +0200
commitc84384e6608368a13a774d6d33a8cc32da7cf209 (patch)
treea18aa9c1ced1299d2682c1993e1ba38f46448dba /vendor/github.com/tdewolff/minify/v2/Dockerfile
parent[chore] use our own logging implementation (#716) (diff)
downloadgotosocial-c84384e6608368a13a774d6d33a8cc32da7cf209.tar.xz
[bugfix] html escape special characters in text instead of totally removing them (#719)
* remove minify dependency * tidy up some tests * remove pre + postformat funcs * rework sanitization + formatting * update tests * add some more markdown tests
Diffstat (limited to 'vendor/github.com/tdewolff/minify/v2/Dockerfile')
-rw-r--r--vendor/github.com/tdewolff/minify/v2/Dockerfile14
1 files changed, 0 insertions, 14 deletions
diff --git a/vendor/github.com/tdewolff/minify/v2/Dockerfile b/vendor/github.com/tdewolff/minify/v2/Dockerfile
deleted file mode 100644
index fe3676b06..000000000
--- a/vendor/github.com/tdewolff/minify/v2/Dockerfile
+++ /dev/null
@@ -1,14 +0,0 @@
-# Use this image to build the executable
-FROM golang:1.16-alpine AS compiler
-
-RUN apk add --no-cache git ca-certificates make
-
-WORKDIR $GOPATH/src/minify
-COPY . .
-
-RUN /usr/bin/env bash -c make install
-
-# Final image containing the executable from the previous step
-FROM alpine:3
-
-COPY --from=compiler /bin/minify /bin/minify