Files
nuget-push/Dockerfile
2026-03-20 14:33:03 +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"]