feat: change from debian to alpine

issue #34
This commit is contained in:
C4illin 2024-06-20 20:23:34 +02:00
parent 6fb07f0d13
commit 13169574f0
4 changed files with 18 additions and 3 deletions

View file

@ -31,10 +31,9 @@ LABEL description="ConvertX: self-hosted online file converter supporting 700+ f
LABEL repo="https://github.com/C4illin/ConvertX"
# install additional dependencies
RUN apk update && apk add --no-cache \
RUN apk --no-cache add \
pandoc \
texlive \
texmf-dist-fontsextra \
texmf-dist-latexextra \
ffmpeg \
graphicsmagick \
@ -42,6 +41,9 @@ RUN apk update && apk add --no-cache \
vips-tools \
libjxl-tools
# this might be needed for some latex use cases, will add it if needed.
# texmf-dist-fontsextra \
COPY --from=install /temp/prod/node_modules node_modules
# COPY --from=prerelease /app/src/index.tsx /app/src/
# COPY --from=prerelease /app/package.json .