mirror of
https://github.com/linuxserver/docker-webgrabplus.git
synced 2026-04-13 00:04:01 +08:00
Merge remote-tracking branch 'origin/master' into standard-cron
This commit is contained in:
commit
053fa4673d
@ -1,6 +1,6 @@
|
||||
# syntax=docker/dockerfile:1
|
||||
|
||||
FROM ghcr.io/linuxserver/baseimage-alpine:3.17
|
||||
FROM ghcr.io/linuxserver/baseimage-alpine:3.18
|
||||
|
||||
# set version label
|
||||
ARG BUILD_DATE
|
||||
@ -25,13 +25,13 @@ RUN \
|
||||
curl -o /tmp/dotnet-install.sh -L \
|
||||
https://dot.net/v1/dotnet-install.sh && \
|
||||
chmod +x /tmp/dotnet-install.sh && \
|
||||
/tmp/dotnet-install.sh -c 6.0 --install-dir /app/dotnet --runtime dotnet && \
|
||||
/tmp/dotnet-install.sh -c 7.0 --install-dir /app/dotnet --runtime dotnet && \
|
||||
echo "**** install webgrabplus ****" && \
|
||||
if [ -z "$WEBGRAB_VER" ]; then \
|
||||
WEBGRAB_VER=$(curl -fsL http://webgrabplus.com/download/sw | grep -m1 /download/sw/v | sed 's|.*/download/sw/v\(.*\)">V.*|\1|'); \
|
||||
fi && \
|
||||
echo "Found Webgrabplus version ${WEBGRAB_VER}" && \
|
||||
WEBGRAB_URL=$(curl -fsL http://webgrabplus.com/download/sw/v${WEBGRAB_VER} | grep '>Linux</a>' | sed 's|.*\(http://webgrab.*tar\.gz\).*|\1|') && \
|
||||
WEBGRAB_URL=$(curl -fsL http://webgrabplus.com/download/sw/v${WEBGRAB_VER} | grep '>Linux</a>' | sed 's|.*\(http://webgrab.*.gz\).*|\1|') && \
|
||||
mkdir -p \
|
||||
/app/wg++ && \
|
||||
curl -o /tmp/wg++.tar.gz -L \
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
# syntax=docker/dockerfile:1
|
||||
|
||||
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.17
|
||||
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.18
|
||||
|
||||
# set version label
|
||||
ARG BUILD_DATE
|
||||
@ -26,13 +26,13 @@ RUN \
|
||||
curl -o /tmp/dotnet-install.sh -L \
|
||||
https://dot.net/v1/dotnet-install.sh && \
|
||||
chmod +x /tmp/dotnet-install.sh && \
|
||||
/tmp/dotnet-install.sh -c 6.0 --install-dir /app/dotnet --runtime dotnet && \
|
||||
/tmp/dotnet-install.sh -c 7.0 --install-dir /app/dotnet --runtime dotnet && \
|
||||
echo "**** install webgrabplus ****" && \
|
||||
if [ -z "$WEBGRAB_VER" ]; then \
|
||||
WEBGRAB_VER=$(curl -fsL http://webgrabplus.com/download/sw | grep -m1 /download/sw/v | sed 's|.*/download/sw/v\(.*\)">V.*|\1|'); \
|
||||
fi && \
|
||||
echo "Found Webgrabplus version ${WEBGRAB_VER}" && \
|
||||
WEBGRAB_URL=$(curl -fsL http://webgrabplus.com/download/sw/v${WEBGRAB_VER} | grep '>Linux</a>' | sed 's|.*\(http://webgrab.*tar\.gz\).*|\1|') && \
|
||||
WEBGRAB_URL=$(curl -fsL http://webgrabplus.com/download/sw/v${WEBGRAB_VER} | grep '>Linux</a>' | sed 's|.*\(http://webgrab.*\.gz\).*|\1|') && \
|
||||
mkdir -p \
|
||||
/app/wg++ && \
|
||||
curl -o /tmp/wg++.tar.gz -L \
|
||||
|
||||
@ -255,6 +255,8 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
|
||||
|
||||
## Versions
|
||||
|
||||
* **18.08.23:** - Rebase to Alpine 3.18.
|
||||
* **16.08.23:** - Update dotnet framework to 7.x.
|
||||
* **06.07.23:** - Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)
|
||||
* **13.03.23:** - Rebase to Alpine 3.17.
|
||||
* **23.03.22:** - Rebase to Alpine 3.16 and s6v3. Update to dotnet 6.
|
||||
|
||||
@ -1,151 +1,237 @@
|
||||
NAME VERSION TYPE
|
||||
Azure.Core 1.25.0 dotnet
|
||||
Azure.Storage.Common 12.12.0 dotnet
|
||||
Azure.Storage.Files.Shares 12.11.0 dotnet
|
||||
Microsoft.Bcl.AsyncInterfaces 1.1.1 dotnet
|
||||
Microsoft.CSharp 4.3.0 dotnet
|
||||
Microsoft.NETCore.App.Runtime.linux-musl-x64 6.0.20 dotnet
|
||||
Microsoft.NETCore.Platforms 1.1.0 dotnet
|
||||
Microsoft.NETCore.Targets 1.1.0 dotnet
|
||||
Microsoft.Win32.Primitives 4.3.0 dotnet
|
||||
NETStandard.Library 1.6.1 dotnet
|
||||
Newtonsoft.Json 10.0.2 dotnet
|
||||
System.AppContext 4.3.0 dotnet
|
||||
System.Buffers 4.3.0 dotnet
|
||||
System.Collections 4.3.0 dotnet
|
||||
System.Collections.Concurrent 4.3.0 dotnet
|
||||
System.Collections.NonGeneric 4.3.0 dotnet
|
||||
System.Collections.Specialized 4.3.0 dotnet
|
||||
System.ComponentModel 4.3.0 dotnet
|
||||
System.ComponentModel.Primitives 4.3.0 dotnet
|
||||
System.ComponentModel.TypeConverter 4.3.0 dotnet
|
||||
System.Console 4.3.0 dotnet
|
||||
System.Diagnostics.Debug 4.3.0 dotnet
|
||||
System.Diagnostics.DiagnosticSource 4.6.0 dotnet
|
||||
System.Diagnostics.Tools 4.3.0 dotnet
|
||||
System.Diagnostics.Tracing 4.3.0 dotnet
|
||||
System.Dynamic.Runtime 4.3.0 dotnet
|
||||
System.Globalization 4.3.0 dotnet
|
||||
System.Globalization.Calendars 4.3.0 dotnet
|
||||
System.Globalization.Extensions 4.3.0 dotnet
|
||||
System.IO 4.3.0 dotnet
|
||||
System.IO.Compression 4.3.0 dotnet
|
||||
System.IO.Compression.ZipFile 4.3.0 dotnet
|
||||
System.IO.FileSystem 4.3.0 dotnet
|
||||
System.IO.FileSystem.Primitives 4.3.0 dotnet
|
||||
System.IO.Hashing 6.0.0 dotnet
|
||||
System.Linq 4.3.0 dotnet
|
||||
System.Linq.Expressions 4.3.0 dotnet
|
||||
System.Memory.Data 1.0.2 dotnet
|
||||
System.Net.Http 4.3.0 dotnet
|
||||
System.Net.Primitives 4.3.0 dotnet
|
||||
System.Net.Sockets 4.3.0 dotnet
|
||||
System.Numerics.Vectors 4.5.0 dotnet
|
||||
System.ObjectModel 4.3.0 dotnet
|
||||
System.Reflection 4.3.0 dotnet
|
||||
System.Reflection.Emit 4.3.0 dotnet
|
||||
System.Reflection.Emit.ILGeneration 4.3.0 dotnet
|
||||
System.Reflection.Emit.Lightweight 4.3.0 dotnet
|
||||
System.Reflection.Extensions 4.3.0 dotnet
|
||||
System.Reflection.Primitives 4.3.0 dotnet
|
||||
System.Reflection.TypeExtensions 4.3.0 dotnet
|
||||
System.Resources.ResourceManager 4.3.0 dotnet
|
||||
System.Runtime 4.3.0 dotnet
|
||||
System.Runtime.CompilerServices.Unsafe 6.0.0 dotnet
|
||||
System.Runtime.Extensions 4.3.0 dotnet
|
||||
System.Runtime.Handles 4.3.0 dotnet
|
||||
System.Runtime.InteropServices 4.3.0 dotnet
|
||||
System.Runtime.InteropServices.RuntimeInformation 4.3.0 dotnet
|
||||
System.Runtime.Numerics 4.3.0 dotnet
|
||||
System.Runtime.Serialization.Formatters 4.3.0 dotnet
|
||||
System.Runtime.Serialization.Primitives 4.3.0 dotnet
|
||||
System.Security.Cryptography.Algorithms 4.3.0 dotnet
|
||||
System.Security.Cryptography.Cng 4.3.0 dotnet
|
||||
System.Security.Cryptography.Csp 4.3.0 dotnet
|
||||
System.Security.Cryptography.Encoding 4.3.0 dotnet
|
||||
System.Security.Cryptography.OpenSsl 4.3.0 dotnet
|
||||
System.Security.Cryptography.Primitives 4.3.0 dotnet
|
||||
System.Security.Cryptography.X509Certificates 4.3.0 dotnet
|
||||
System.Text.Encoding 4.3.0 dotnet
|
||||
System.Text.Encoding.CodePages 6.0.0 dotnet
|
||||
System.Text.Encoding.Extensions 4.3.0 dotnet
|
||||
System.Text.Encodings.Web 4.7.2 dotnet
|
||||
System.Text.Json 4.7.2 dotnet
|
||||
System.Text.RegularExpressions 4.3.0 dotnet
|
||||
System.Threading 4.3.0 dotnet
|
||||
System.Threading.Tasks 4.3.0 dotnet
|
||||
System.Threading.Tasks.Extensions 4.5.4 dotnet
|
||||
System.Threading.Timer 4.3.0 dotnet
|
||||
System.Xml.ReaderWriter 4.3.0 dotnet
|
||||
System.Xml.XDocument 4.3.0 dotnet
|
||||
System.Xml.XmlDocument 4.3.0 dotnet
|
||||
WG.azure 1.0.0 dotnet
|
||||
WG.donators 1.0.0 dotnet
|
||||
WindowsAzure.Storage 9.3.3 dotnet
|
||||
alpine-baselayout 3.4.0-r0 apk
|
||||
alpine-baselayout-data 3.4.0-r0 apk
|
||||
alpine-keys 2.4-r1 apk
|
||||
alpine-release 3.17.4-r0 apk
|
||||
apk-tools 2.12.10-r1 apk
|
||||
bash 5.2.15-r0 apk
|
||||
brotli-libs 1.0.9-r9 apk
|
||||
busybox 1.35.0 binary
|
||||
busybox 1.35.0-r29 apk
|
||||
busybox-binsh 1.35.0-r29 apk
|
||||
ca-certificates 20230506-r0 apk
|
||||
ca-certificates-bundle 20230506-r0 apk
|
||||
coreutils 9.1-r0 apk
|
||||
curl 8.2.0-r1 apk
|
||||
icu-data-en 72.1-r1 apk
|
||||
icu-libs 72.1-r1 apk
|
||||
iputils 20211215-r0 apk
|
||||
jq 1.6-r2 apk
|
||||
libacl 2.3.1-r1 apk
|
||||
libattr 2.5.1-r2 apk
|
||||
libbsd 0.11.7-r0 apk
|
||||
libc-utils 0.7.2-r3 apk
|
||||
libcap2 2.66-r1 apk
|
||||
libcrypto3 3.0.9-r3 apk
|
||||
libcurl 8.2.0-r1 apk
|
||||
libgcc 12.2.1_git20220924-r4 apk
|
||||
libintl 0.21.1-r1 apk
|
||||
libmd 1.0.4-r0 apk
|
||||
libproc 3.3.17-r2 apk
|
||||
libssl3 3.0.9-r3 apk
|
||||
libstdc++ 12.2.1_git20220924-r4 apk
|
||||
linux-pam 1.5.2-r1 apk
|
||||
musl 1.2.3-r5 apk
|
||||
musl-utils 1.2.3-r5 apk
|
||||
ncurses-libs 6.3_p20221119-r1 apk
|
||||
ncurses-terminfo-base 6.3_p20221119-r1 apk
|
||||
netcat-openbsd 1.130-r4 apk
|
||||
nghttp2-libs 1.51.0-r1 apk
|
||||
oniguruma 6.9.8-r0 apk
|
||||
procps 3.3.17-r2 apk
|
||||
readline 8.2.0-r0 apk
|
||||
runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet
|
||||
runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet
|
||||
runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet
|
||||
runtime.native.System 4.3.0 dotnet
|
||||
runtime.native.System.IO.Compression 4.3.0 dotnet
|
||||
runtime.native.System.Net.Http 4.3.0 dotnet
|
||||
runtime.native.System.Security.Cryptography.Apple 4.3.0 dotnet
|
||||
runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet
|
||||
runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet
|
||||
runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet
|
||||
runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple 4.3.0 dotnet
|
||||
runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet
|
||||
runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet
|
||||
runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet
|
||||
runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet
|
||||
runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet
|
||||
scanelf 1.3.5-r1 apk
|
||||
shadow 4.13-r0 apk
|
||||
skalibs 2.12.0.1-r0 apk
|
||||
ssl_client 1.35.0-r29 apk
|
||||
tzdata 2023c-r0 apk
|
||||
unzip 6.0-r13 apk
|
||||
utmps-libs 0.1.2.0-r1 apk
|
||||
xz 5.2.9-r0 apk
|
||||
xz-libs 5.2.9-r0 apk
|
||||
zlib 1.2.13-r0 apk
|
||||
NAME VERSION TYPE
|
||||
Json.NET .NET Standard 1.3 10.0.2.20802 dotnet
|
||||
Microsoft Azure Client Pipeline 1.2500.22.33004 dotnet
|
||||
Microsoft Azure.Storage.Common client library 12.1200.22.35704 dotnet
|
||||
Microsoft Azure.Storage.Files.Shares client library 12.1100.22.35704 dotnet
|
||||
Microsoft.Bcl.AsyncInterfaces 4.700.20.21406 dotnet
|
||||
Microsoft.CSharp 7.0.1023.36312 dotnet
|
||||
Microsoft.VisualBasic 7.0.1023.36312 dotnet
|
||||
Microsoft.VisualBasic.Core 12.0.1023.36312 dotnet
|
||||
Microsoft.Win32.Primitives 7.0.1023.36312 dotnet
|
||||
Microsoft.Win32.Registry 7.0.1023.36312 dotnet
|
||||
System 7.0.1023.36312 dotnet
|
||||
System.AppContext 7.0.1023.36312 dotnet
|
||||
System.Buffers 7.0.1023.36312 dotnet
|
||||
System.Collections 7.0.1023.36312 dotnet
|
||||
System.Collections.Concurrent 7.0.1023.36312 dotnet
|
||||
System.Collections.Immutable 7.0.1023.36312 dotnet
|
||||
System.Collections.NonGeneric 7.0.1023.36312 dotnet
|
||||
System.Collections.Specialized 7.0.1023.36312 dotnet
|
||||
System.ComponentModel 7.0.1023.36312 dotnet
|
||||
System.ComponentModel.Annotations 7.0.1023.36312 dotnet
|
||||
System.ComponentModel.DataAnnotations 7.0.1023.36312 dotnet
|
||||
System.ComponentModel.EventBasedAsync 7.0.1023.36312 dotnet
|
||||
System.ComponentModel.Primitives 7.0.1023.36312 dotnet
|
||||
System.ComponentModel.TypeConverter 7.0.1023.36312 dotnet
|
||||
System.Configuration 7.0.1023.36312 dotnet
|
||||
System.Console 7.0.1023.36312 dotnet
|
||||
System.Core 7.0.1023.36312 dotnet
|
||||
System.Data 7.0.1023.36312 dotnet
|
||||
System.Data.Common 7.0.1023.36312 dotnet
|
||||
System.Data.DataSetExtensions 7.0.1023.36312 dotnet
|
||||
System.Diagnostics.Contracts 7.0.1023.36312 dotnet
|
||||
System.Diagnostics.Debug 7.0.1023.36312 dotnet
|
||||
System.Diagnostics.DiagnosticSource 7.0.1023.36312 dotnet
|
||||
System.Diagnostics.FileVersionInfo 7.0.1023.36312 dotnet
|
||||
System.Diagnostics.Process 7.0.1023.36312 dotnet
|
||||
System.Diagnostics.StackTrace 7.0.1023.36312 dotnet
|
||||
System.Diagnostics.TextWriterTraceListener 7.0.1023.36312 dotnet
|
||||
System.Diagnostics.Tools 7.0.1023.36312 dotnet
|
||||
System.Diagnostics.TraceSource 7.0.1023.36312 dotnet
|
||||
System.Diagnostics.Tracing 7.0.1023.36312 dotnet
|
||||
System.Drawing 7.0.1023.36312 dotnet
|
||||
System.Drawing.Primitives 7.0.1023.36312 dotnet
|
||||
System.Dynamic.Runtime 7.0.1023.36312 dotnet
|
||||
System.Formats.Asn1 7.0.1023.36312 dotnet
|
||||
System.Formats.Tar 7.0.1023.36312 dotnet
|
||||
System.Globalization 7.0.1023.36312 dotnet
|
||||
System.Globalization.Calendars 7.0.1023.36312 dotnet
|
||||
System.Globalization.Extensions 7.0.1023.36312 dotnet
|
||||
System.IO 7.0.1023.36312 dotnet
|
||||
System.IO.Compression 7.0.1023.36312 dotnet
|
||||
System.IO.Compression.Brotli 7.0.1023.36312 dotnet
|
||||
System.IO.Compression.FileSystem 7.0.1023.36312 dotnet
|
||||
System.IO.Compression.ZipFile 7.0.1023.36312 dotnet
|
||||
System.IO.FileSystem 7.0.1023.36312 dotnet
|
||||
System.IO.FileSystem.AccessControl 7.0.1023.36312 dotnet
|
||||
System.IO.FileSystem.DriveInfo 7.0.1023.36312 dotnet
|
||||
System.IO.FileSystem.Primitives 7.0.1023.36312 dotnet
|
||||
System.IO.FileSystem.Watcher 7.0.1023.36312 dotnet
|
||||
System.IO.Hashing 6.0.21.52210 dotnet
|
||||
System.IO.IsolatedStorage 7.0.1023.36312 dotnet
|
||||
System.IO.MemoryMappedFiles 7.0.1023.36312 dotnet
|
||||
System.IO.Pipes 7.0.1023.36312 dotnet
|
||||
System.IO.Pipes.AccessControl 7.0.1023.36312 dotnet
|
||||
System.IO.UnmanagedMemoryStream 7.0.1023.36312 dotnet
|
||||
System.Linq 7.0.1023.36312 dotnet
|
||||
System.Linq.Expressions 7.0.1023.36312 dotnet
|
||||
System.Linq.Parallel 7.0.1023.36312 dotnet
|
||||
System.Linq.Queryable 7.0.1023.36312 dotnet
|
||||
System.Memory 7.0.1023.36312 dotnet
|
||||
System.Memory.Data 1.0.221.20802 dotnet
|
||||
System.Net 7.0.1023.36312 dotnet
|
||||
System.Net.Http 7.0.1023.36312 dotnet
|
||||
System.Net.Http.Json 7.0.1023.36312 dotnet
|
||||
System.Net.HttpListener 7.0.1023.36312 dotnet
|
||||
System.Net.Mail 7.0.1023.36312 dotnet
|
||||
System.Net.NameResolution 7.0.1023.36312 dotnet
|
||||
System.Net.NetworkInformation 7.0.1023.36312 dotnet
|
||||
System.Net.Ping 7.0.1023.36312 dotnet
|
||||
System.Net.Primitives 7.0.1023.36312 dotnet
|
||||
System.Net.Quic 7.0.1023.36312 dotnet
|
||||
System.Net.Requests 7.0.1023.36312 dotnet
|
||||
System.Net.Security 7.0.1023.36312 dotnet
|
||||
System.Net.ServicePoint 7.0.1023.36312 dotnet
|
||||
System.Net.Sockets 7.0.1023.36312 dotnet
|
||||
System.Net.WebClient 7.0.1023.36312 dotnet
|
||||
System.Net.WebHeaderCollection 7.0.1023.36312 dotnet
|
||||
System.Net.WebProxy 7.0.1023.36312 dotnet
|
||||
System.Net.WebSockets 7.0.1023.36312 dotnet
|
||||
System.Net.WebSockets.Client 7.0.1023.36312 dotnet
|
||||
System.Numerics 7.0.1023.36312 dotnet
|
||||
System.Numerics.Vectors 7.0.1023.36312 dotnet
|
||||
System.ObjectModel 7.0.1023.36312 dotnet
|
||||
System.Private.CoreLib 7.0.1023.36312 dotnet
|
||||
System.Private.DataContractSerialization 7.0.1023.36312 dotnet
|
||||
System.Private.Uri 7.0.1023.36312 dotnet
|
||||
System.Private.Xml 7.0.1023.36312 dotnet
|
||||
System.Private.Xml.Linq 7.0.1023.36312 dotnet
|
||||
System.Reflection 7.0.1023.36312 dotnet
|
||||
System.Reflection.DispatchProxy 7.0.1023.36312 dotnet
|
||||
System.Reflection.Emit 7.0.1023.36312 dotnet
|
||||
System.Reflection.Emit.ILGeneration 7.0.1023.36312 dotnet
|
||||
System.Reflection.Emit.Lightweight 7.0.1023.36312 dotnet
|
||||
System.Reflection.Extensions 7.0.1023.36312 dotnet
|
||||
System.Reflection.Metadata 7.0.1023.36312 dotnet
|
||||
System.Reflection.Primitives 7.0.1023.36312 dotnet
|
||||
System.Reflection.TypeExtensions 7.0.1023.36312 dotnet
|
||||
System.Resources.Reader 7.0.1023.36312 dotnet
|
||||
System.Resources.ResourceManager 7.0.1023.36312 dotnet
|
||||
System.Resources.Writer 7.0.1023.36312 dotnet
|
||||
System.Runtime 7.0.1023.36312 dotnet
|
||||
System.Runtime.CompilerServices.Unsafe 7.0.1023.36312 dotnet
|
||||
System.Runtime.CompilerServices.VisualC 7.0.1023.36312 dotnet
|
||||
System.Runtime.Extensions 7.0.1023.36312 dotnet
|
||||
System.Runtime.Handles 7.0.1023.36312 dotnet
|
||||
System.Runtime.InteropServices 7.0.1023.36312 dotnet
|
||||
System.Runtime.InteropServices.JavaScript 7.0.1023.36312 dotnet
|
||||
System.Runtime.InteropServices.RuntimeInformation 7.0.1023.36312 dotnet
|
||||
System.Runtime.Intrinsics 7.0.1023.36312 dotnet
|
||||
System.Runtime.Loader 7.0.1023.36312 dotnet
|
||||
System.Runtime.Numerics 7.0.1023.36312 dotnet
|
||||
System.Runtime.Serialization 7.0.1023.36312 dotnet
|
||||
System.Runtime.Serialization.Formatters 7.0.1023.36312 dotnet
|
||||
System.Runtime.Serialization.Json 7.0.1023.36312 dotnet
|
||||
System.Runtime.Serialization.Primitives 7.0.1023.36312 dotnet
|
||||
System.Runtime.Serialization.Xml 7.0.1023.36312 dotnet
|
||||
System.Security 7.0.1023.36312 dotnet
|
||||
System.Security.AccessControl 7.0.1023.36312 dotnet
|
||||
System.Security.Claims 7.0.1023.36312 dotnet
|
||||
System.Security.Cryptography 7.0.1023.36312 dotnet
|
||||
System.Security.Cryptography.Algorithms 7.0.1023.36312 dotnet
|
||||
System.Security.Cryptography.Cng 7.0.1023.36312 dotnet
|
||||
System.Security.Cryptography.Csp 7.0.1023.36312 dotnet
|
||||
System.Security.Cryptography.Encoding 7.0.1023.36312 dotnet
|
||||
System.Security.Cryptography.OpenSsl 7.0.1023.36312 dotnet
|
||||
System.Security.Cryptography.Primitives 7.0.1023.36312 dotnet
|
||||
System.Security.Cryptography.X509Certificates 7.0.1023.36312 dotnet
|
||||
System.Security.Principal 7.0.1023.36312 dotnet
|
||||
System.Security.Principal.Windows 7.0.1023.36312 dotnet
|
||||
System.Security.SecureString 7.0.1023.36312 dotnet
|
||||
System.ServiceModel.Web 7.0.1023.36312 dotnet
|
||||
System.ServiceProcess 7.0.1023.36312 dotnet
|
||||
System.Text.Encoding 7.0.1023.36312 dotnet
|
||||
System.Text.Encoding.CodePages 7.0.1023.36312 dotnet
|
||||
System.Text.Encoding.Extensions 7.0.1023.36312 dotnet
|
||||
System.Text.Encodings.Web 7.0.1023.36312 dotnet
|
||||
System.Text.Json 7.0.1023.36312 dotnet
|
||||
System.Text.RegularExpressions 7.0.1023.36312 dotnet
|
||||
System.Threading 7.0.1023.36312 dotnet
|
||||
System.Threading.Channels 7.0.1023.36312 dotnet
|
||||
System.Threading.Overlapped 7.0.1023.36312 dotnet
|
||||
System.Threading.Tasks 7.0.1023.36312 dotnet
|
||||
System.Threading.Tasks.Dataflow 7.0.1023.36312 dotnet
|
||||
System.Threading.Tasks.Extensions 7.0.1023.36312 dotnet
|
||||
System.Threading.Tasks.Parallel 7.0.1023.36312 dotnet
|
||||
System.Threading.Thread 7.0.1023.36312 dotnet
|
||||
System.Threading.ThreadPool 7.0.1023.36312 dotnet
|
||||
System.Threading.Timer 7.0.1023.36312 dotnet
|
||||
System.Transactions 7.0.1023.36312 dotnet
|
||||
System.Transactions.Local 7.0.1023.36312 dotnet
|
||||
System.ValueTuple 7.0.1023.36312 dotnet
|
||||
System.Web 7.0.1023.36312 dotnet
|
||||
System.Web.HttpUtility 7.0.1023.36312 dotnet
|
||||
System.Windows 7.0.1023.36312 dotnet
|
||||
System.Xml 7.0.1023.36312 dotnet
|
||||
System.Xml.Linq 7.0.1023.36312 dotnet
|
||||
System.Xml.ReaderWriter 7.0.1023.36312 dotnet
|
||||
System.Xml.Serialization 7.0.1023.36312 dotnet
|
||||
System.Xml.XDocument 7.0.1023.36312 dotnet
|
||||
System.Xml.XPath 7.0.1023.36312 dotnet
|
||||
System.Xml.XPath.XDocument 7.0.1023.36312 dotnet
|
||||
System.Xml.XmlDocument 7.0.1023.36312 dotnet
|
||||
System.Xml.XmlSerializer 7.0.1023.36312 dotnet
|
||||
WG.azure 1.0.1.0 dotnet
|
||||
WG.common.logger 1.0.0.0 dotnet
|
||||
WG.common.timezone 1.0.0.0 dotnet
|
||||
WG.donators 1.0.0.0 dotnet
|
||||
WebGrab+Plus 5.1.0.0 dotnet
|
||||
WindowsBase 7.0.1023.36312 dotnet
|
||||
alpine-baselayout 3.4.3-r1 apk
|
||||
alpine-baselayout-data 3.4.3-r1 apk
|
||||
alpine-keys 2.4-r1 apk
|
||||
alpine-release 3.18.3-r0 apk
|
||||
apk-tools 2.14.0-r2 apk
|
||||
bash 5.2.15-r5 apk
|
||||
brotli-libs 1.0.9-r14 apk
|
||||
busybox 1.36.1-r2 apk
|
||||
busybox-binsh 1.36.1-r2 apk
|
||||
ca-certificates 20230506-r0 apk
|
||||
ca-certificates-bundle 20230506-r0 apk
|
||||
coreutils 9.3-r1 apk
|
||||
curl 8.2.1-r0 apk
|
||||
icu-data-en 73.2-r2 apk
|
||||
icu-libs 73.2-r2 apk
|
||||
iputils 20221126-r2 apk
|
||||
iputils-arping 20221126-r2 apk
|
||||
iputils-clockdiff 20221126-r2 apk
|
||||
iputils-ping 20221126-r2 apk
|
||||
iputils-tracepath 20221126-r2 apk
|
||||
jq 1.6-r3 apk
|
||||
libacl 2.3.1-r3 apk
|
||||
libattr 2.5.1-r4 apk
|
||||
libbsd 0.11.7-r1 apk
|
||||
libc-utils 0.7.2-r5 apk
|
||||
libcap2 2.69-r0 apk
|
||||
libcrypto3 3.1.2-r0 apk
|
||||
libcurl 8.2.1-r0 apk
|
||||
libgcc 12.2.1_git20220924-r10 apk
|
||||
libidn2 2.3.4-r1 apk
|
||||
libintl 0.21.1-r7 apk
|
||||
libmd 1.0.4-r2 apk
|
||||
libncursesw 6.4_p20230506-r0 apk
|
||||
libproc2 4.0.3-r1 apk
|
||||
libssl3 3.1.2-r0 apk
|
||||
libstdc++ 12.2.1_git20220924-r10 apk
|
||||
libunistring 1.1-r1 apk
|
||||
linux-pam 1.5.2-r10 apk
|
||||
mscorlib 7.0.1023.36312 dotnet
|
||||
musl 1.2.4-r1 apk
|
||||
musl-utils 1.2.4-r1 apk
|
||||
ncurses-terminfo-base 6.4_p20230506-r0 apk
|
||||
netcat-openbsd 1.219-r1 apk
|
||||
netstandard 7.0.1023.36312 dotnet
|
||||
nghttp2-libs 1.55.1-r0 apk
|
||||
oniguruma 6.9.8-r1 apk
|
||||
procps-ng 4.0.3-r1 apk
|
||||
readline 8.2.1-r1 apk
|
||||
scanelf 1.3.7-r1 apk
|
||||
shadow 4.13-r4 apk
|
||||
skalibs 2.13.1.1-r1 apk
|
||||
ssl_client 1.36.1-r2 apk
|
||||
tzdata 2023c-r1 apk
|
||||
unzip 6.0-r14 apk
|
||||
utmps-libs 0.1.2.1-r1 apk
|
||||
xmltv 1.0.0.0 dotnet
|
||||
xmltv_time_modify 1.0.0.0 dotnet
|
||||
zlib 1.2.13-r1 apk
|
||||
|
||||
@ -64,6 +64,8 @@ app_setup_block: |
|
||||
```
|
||||
# changelog
|
||||
changelogs:
|
||||
- {date: "18.08.23:", desc: "Rebase to Alpine 3.18."}
|
||||
- {date: "16.08.23:", desc: "Update dotnet framework to 7.x."}
|
||||
- {date: "06.07.23:", desc: "Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)"}
|
||||
- {date: "13.03.23:", desc: "Rebase to Alpine 3.17."}
|
||||
- {date: "23.03.22:", desc: "Rebase to Alpine 3.16 and s6v3. Update to dotnet 6."}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user