mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-04-19 22:19:49 -04:00
* Initial Windows ffmpeg + libheif custom build * Add build steps for most of ffmpeg deps * FFmpeg deps and libheif * Fix libheif build * Fix libvpx and dlfcn + attempt to fix rav1e * Rework the whole ffmpeg-windows build system - New system based on https://github.com/BtbN/FFmpeg-Builds - Add new ffmpeg-windows workflow - Rename macos ffmpeg workflow - Adapt macos setupt script due to above name change * Forgot to update update the workflow name * Strip all libs from debug symbols * Add docs * Add libde265 deps, required by libheif - Make x265, svtav1 and dav1d as shared deps (used by both ffmpeg and libheif) * Add missing libheif to Linux setup script * Fix libx265 build script * Forgot to point x265 ninja install to the correct directory * Remove libaom and libsvt-av1 - dav1d and rav1d are our default AV1 decoders/encoders - Quote subshell executions - Make libweb shared * Forgot to remove libaom and libsvt-av1 build steps * Fix typo * Try force webp to link against static libs * Revert libwebp to a static build * Dumb typo * Modify windows script to download our ffmpeg build (WIP) * Fix dlls output folder structure * Fix dumb mistake * Remove unused ffbuild_enabled * Enable core's heif feature on Windows - Fix windows ffmpeg build not including the headers - Fix windows setupt script incorrect download loagic - Implement build_arg to pass which repo ref to use when cloning * Fix windows setup script * Fix workflow artifact path - Make ffmpeg-windows dockerfile respect the FFMPEG_VERSION env * Fix Windows setup script incorrect logic for downloading ffmpeg builds * Error out when workflow_runs is empty * Fix dumb mistake * Manually define ffmpeg version for windows script * Fix ffmpeg windows build extract logic * Fix prop access in windows setup script * Revert back to a web request because nightly.link does a redirect before serving the artifact content * Fix windows setup script * Do not use nightly.link in Github CI * Fix windows setup script * Should finally fix window setup script - Update ffmpeg-windows deps - Should fix ffmpeg-windows failing to build due to mingw changes in new base image * Fix libxz failing to build due to doxygen * Fix windows setup-script not executing till the end * Fix LASTEXITCODE not defined * Remove libjxl, deps are not being compiled * Fix dll and lib copy logic * Move final copy dll logic to external script * Use main for libjxl * Change brotli from stable to main - Attempt to fix libjxl * Attempt fix lib copy again * Split copy_dll logic to avoid cache burst in docker * Missing file * Change how to export build files from shared deps * Replace rsync with cp * Fix copy * Fix dir not existing * Fix pkgconfig * Remove superflous files from exported ffmpeg for windows - Adjust dav1d to not build tools and examples - Adjust windows setup-script to point linker to the libs directory * Fix dav1d meson config args * Fix dumb mistake * WORK PLZ * Fix .lib file location - Strip all dlls * Formatter
87 lines
2.2 KiB
Docker
87 lines
2.2 KiB
Docker
ARG REPO_REF=main
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
#--
|
|
|
|
FROM debian:bookworm as base
|
|
|
|
ARG DEBIAN_FRONTEND
|
|
|
|
ADD https://gist.githubusercontent.com/HeavenVolkoff/ff7b77b9087f956b8df944772e93c071/raw \
|
|
/etc/apt/apt.conf.d/99docker-apt-config
|
|
|
|
RUN rm -f /etc/apt/apt.conf.d/docker-clean; \
|
|
echo 'Binary::apt::APT::Keep-Downloaded-Packages "true";' > /etc/apt/apt.conf.d/keep-cache
|
|
|
|
RUN --mount=type=cache,target=/var/cache/apt --mount=type=cache,target=/var/lib/apt \
|
|
apt-get update && apt-get upgrade
|
|
|
|
#--
|
|
|
|
FROM base as build
|
|
|
|
ARG DEBIAN_FRONTEND
|
|
|
|
RUN --mount=type=cache,target=/var/cache/apt --mount=type=cache,target=/var/lib/apt \
|
|
apt-get install build-essential git sudo unzip wget
|
|
|
|
RUN wget -qO- https://get.pnpm.io/install.sh | env SHELL=bash PNPM_HOME=/usr/share/pnpm sh -
|
|
|
|
ENV PNPM_HOME="/usr/share/pnpm" \
|
|
PATH="/usr/share/pnpm:$PATH"
|
|
|
|
RUN pnpm env use --global latest
|
|
|
|
RUN wget -qO- https://sh.rustup.rs | sh -s -- -yq --profile minimal
|
|
|
|
ENV PATH="/root/.cargo/bin:$PATH"
|
|
|
|
WORKDIR /srv
|
|
|
|
RUN git init spacedrive
|
|
RUN git -C spacedrive remote add origin https://github.com/spacedriveapp/spacedrive.git
|
|
RUN git -C spacedrive fetch --depth=1 origin "$REPO_REF"
|
|
RUN git -C spacedrive config advice.detachedHead false
|
|
RUN git -C spacedrive checkout FETCH_HEAD
|
|
|
|
WORKDIR /srv/spacedrive
|
|
|
|
RUN --mount=type=cache,target=/var/cache/apt --mount=type=cache,target=/var/lib/apt \
|
|
env CI=true .github/scripts/setup-system.sh
|
|
|
|
RUN --mount=type=cache,target=/root/.cache/prisma/binaries/cli/ \
|
|
pnpm prep
|
|
|
|
RUN cargo build --release -p server
|
|
|
|
#--
|
|
|
|
FROM base
|
|
|
|
ENV TZ=UTC \
|
|
PUID=1000 \
|
|
PGID=1000 \
|
|
LANG=C.UTF-8 \
|
|
LC_ALL=C.UTF-8 \
|
|
TMPDIR=/tmp \
|
|
LANGUAGE=en \
|
|
DATA_DIR=/data
|
|
|
|
RUN --mount=type=cache,target=/var/cache/apt --mount=type=cache,target=/var/lib/apt \
|
|
apt-get install ffmpeg
|
|
|
|
COPY --chmod=755 entrypoint.sh /usr/bin/
|
|
COPY --from=build /srv/spacedrive/target/release/server /usr/bin/
|
|
|
|
# Expose webserver
|
|
EXPOSE 8080
|
|
|
|
# Create the data directory to store the database
|
|
VOLUME [ "/data" ]
|
|
|
|
# Run the CLI when the container is started
|
|
ENTRYPOINT [ "server" ]
|
|
|
|
LABEL org.opencontainers.image.title="Spacedrive Server" \
|
|
org.opencontainers.image.source="https://github.com/spacedriveapp/spacedrive"
|