Files
common/dotnet/Dockerfile
2023-04-27 23:18:14 -07:00

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