webone (latest)
Published 2026-02-27 12:58:01 +01:00 by seeseemelk
Installation
docker pull gitea.seeseepuff.be/containers/webone:latestsha256:e9900d445555af09fade4cb5e5c19093038cdd3a01b639c6d8ae53301f56a589
Image Layers
| # debian.sh --arch 'amd64' out/ 'bookworm' '@1771804800' |
| ENV APP_UID=1654 ASPNETCORE_HTTP_PORTS=8080 DOTNET_RUNNING_IN_CONTAINER=true |
| RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends ca-certificates libc6 libgcc-s1 libicu72 libssl3 libstdc++6 tzdata zlib1g && rm -rf /var/lib/apt/lists/* # buildkit |
| RUN /bin/sh -c groupadd --gid=$APP_UID app && useradd --no-log-init --uid=$APP_UID --gid=$APP_UID --create-home app # buildkit |
| ENV DOTNET_VERSION=8.0.24 |
| COPY /dotnet /usr/share/dotnet # buildkit |
| RUN /bin/sh -c ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet # buildkit |
| WORKDIR /app |
| ENV DEBIAN_FRONTEND=noninteractive |
| RUN /bin/sh -c apt-get update && apt-get install -y python3-pip imagemagick imagemagick-6-common ffmpeg wget && python3 -m pip install --break-system-packages -U yt-dlp # buildkit |
| RUN /bin/sh -c set -eux; wget -O webone.deb https://github.com/atauenis/webone/releases/download/v0.18.1/webone.0.18.1.linux-$(dpkg --print-architecture).deb; dpkg --force-all -i webone.deb; rm webone.deb # buildkit |
| ENTRYPOINT ["webone" "/data/Config/webone/webone.conf"] |