Files
nuget-push/Dockerfile
2026-03-20 14:42:27 +08:00

11 lines
262 B
Docker

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