Fix talk-update workflow and improve imaginary one

Signed-off-by: Simon L <szaimen@e.mail.de>
This commit is contained in:
Simon L 2023-06-06 13:43:06 +02:00
parent f3358fbe0a
commit 0bbe867cad
4 changed files with 9 additions and 4 deletions

View file

@ -1,4 +1,7 @@
FROM golang:1.20.4-alpine3.17 as go
ENV IMAGINARY_HASH b632dae8cc321452c3f85bcae79c580b1ae1ed84
RUN set -ex; \
apk add --no-cache \
vips-dev \
@ -7,7 +10,7 @@ RUN set -ex; \
vips-jxl \
vips-poppler \
build-base; \
go install github.com/h2non/imaginary@b632dae8cc321452c3f85bcae79c580b1ae1ed84;
go install github.com/h2non/imaginary@"$IMAGINARY_HASH";
FROM alpine:3.17.3
RUN set -ex; \