Files
nuget-push/Dockerfile
Jeffery e48e09b6cb Revert "fix: 安裝 docker 套件"
This reverts commit 8b979c483d.
2026-03-20 14:43:40 +08:00

11 lines
255 B
Docker

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"]