Fix Docker TGS to PNG

when attempting to convert TGS to PNG it errors, the below  PR fixes it

resolves: https://github.com/42wim/matterbridge/issues/1515
This commit is contained in:
computeronix
2021-07-28 14:03:36 -04:00
committed by GitHub
parent 13bbeeaceb
commit 8c697e53be

View File

@@ -6,7 +6,8 @@ RUN apk --no-cache add go git \
&& go build -mod vendor -ldflags "-X main.githash=$(git log --pretty=format:'%h' -n 1)" -o /bin/matterbridge
FROM alpine
RUN apk --no-cache add ca-certificates mailcap
RUN apk --no-cache add ca-certificates mailcap python3-dev py3-pip build-base cairo-dev cairo cairo-tools jpeg-dev zlib-dev freetype-dev lcms2-dev openjpeg-dev tiff-dev tk-dev tcl-dev \
&& pip3 install wheel lottie cairosvg
COPY --from=builder /bin/matterbridge /bin/matterbridge
RUN mkdir /etc/matterbridge \
&& touch /etc/matterbridge/matterbridge.toml \