mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-02 23:42:24 -06:00
[bugfix] Markdown formatting updates (#743)
* add minify dependency specifically for markdown * rearrange markdown formatting * update markdown tests
This commit is contained in:
parent
f2a6ae3ef8
commit
879b4abde7
42 changed files with 7259 additions and 19 deletions
17
vendor/github.com/tdewolff/minify/v2/Dockerfile
generated
vendored
Normal file
17
vendor/github.com/tdewolff/minify/v2/Dockerfile
generated
vendored
Normal 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"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue