mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-07 06:19:30 -06:00
Text/status parsing fixes (#141)
* aaaaaa * vendor minify * update + test markdown parsing
This commit is contained in:
parent
ff406be68f
commit
ce190d867c
56 changed files with 7390 additions and 45 deletions
14
vendor/github.com/tdewolff/minify/v2/Dockerfile
generated
vendored
Normal file
14
vendor/github.com/tdewolff/minify/v2/Dockerfile
generated
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# Use this image to build the executable
|
||||
FROM golang:1.16-alpine AS compiler
|
||||
|
||||
WORKDIR $GOPATH/src/minify
|
||||
COPY . .
|
||||
|
||||
RUN apk add --update --update-cache --no-cache git ca-certificates && \
|
||||
GO111MODULES=on CGO_ENABLED=0 go build -ldflags "-s -w" -trimpath -o /bin/minify ./cmd/minify
|
||||
|
||||
|
||||
# Final image containing the executable from the previous step
|
||||
FROM alpine:3
|
||||
|
||||
COPY --from=compiler /bin/minify /bin/minify
|
||||
Loading…
Add table
Add a link
Reference in a new issue