[bugfix] Markdown formatting updates (#743)

* add minify dependency specifically for markdown

* rearrange markdown formatting

* update markdown tests
This commit is contained in:
tobi 2022-08-07 18:19:16 +02:00 committed by GitHub
commit 879b4abde7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
42 changed files with 7259 additions and 19 deletions

17
vendor/github.com/tdewolff/minify/v2/Dockerfile generated vendored Normal file
View file

@ -0,0 +1,17 @@
# Use this image to build the executable
FROM golang:1.18-alpine AS build
WORKDIR /go/src/github.com/tdewolff/minify
COPY . /go/src/github.com/tdewolff/minify/
RUN apk add --no-cache git ca-certificates make bash
RUN /usr/bin/env bash -c make install
# Final image containing the executable from the previous step
FROM alpine:3
COPY --from=build /go/bin/minify /usr/bin/minify
COPY "containerfiles/container-entrypoint.sh" "/init.sh"
ENTRYPOINT ["/init.sh"]