fix(frontend): Add Svelte 5 to dependencies

This commit is contained in:
TheOnlyWayUp
2025-05-27 13:08:34 +00:00
parent 5ec9b5216a
commit 2a7452e84a
16 changed files with 2351 additions and 3479 deletions
+22
View File
@@ -0,0 +1,22 @@
FROM python:3.10-slim
WORKDIR /app
COPY --from=nobodyxu/apt-fast:latest-debian-buster-slim /usr/local/ /usr/local/
RUN apt update
RUN apt install -y aria2
RUN apt-fast install -y git build-essential libpango-1.0-0 libpangoft2-1.0-0 wget
ENV EXIFTOOL_VERSION="13.06"
RUN wget "https://exiftool.org/Image-ExifTool-${EXIFTOOL_VERSION}.tar.gz"
RUN gzip -dc "Image-ExifTool-${EXIFTOOL_VERSION}.tar.gz" | tar -xf -
WORKDIR /app/Image-ExifTool-${EXIFTOOL_VERSION}
RUN perl Makefile.PL
RUN make test
RUN make install
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
RUN rm -rf /var/lib/apt/lists/* /app/Image-ExifTool-${EXIFTOOL_VERSION}