This commit is contained in:
2021-03-25 03:27:51 +01:00
commit 0574ec0b70
4 changed files with 41 additions and 0 deletions

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM alpine:3.13
# Install cwebp and avifenc
RUN apk -U add libwebp-tools libavif-apps dav1d # rav1e #(soon?)
ADD ./generate_all /usr/bin/generate_all
RUN mkdir /src
WORKDIR /src
CMD ["/usr/bin/generate_all"]