10 lines
196 B
Docker
10 lines
196 B
Docker
ARG VERSION=6.0.401
|
|
FROM mcr.microsoft.com/dotnet/sdk:$VERSION
|
|
|
|
RUN apt update
|
|
RUN apt install curl -y
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"]
|