feat: 改成 docker action

This commit is contained in:
Jeffery
2026-03-20 14:33:03 +08:00
parent c4bed9cd90
commit 049673f182
3 changed files with 91 additions and 23 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM mcr.microsoft.com/dotnet/sdk:8.0
RUN apt-get update \
&& apt-get install -y --no-install-recommends curl jq unzip \
&& rm -rf /var/lib/apt/lists/*
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]