9 lines
233 B
Docker
9 lines
233 B
Docker
FROM mcr.microsoft.com/dotnet/sdk:7.0
|
|
|
|
# https://github.com/dotnet-script/dotnet-script
|
|
#RUN dotnet tool install dotnet-script --tool-path /usr/bin
|
|
|
|
COPY ./startup.sh /startup.sh
|
|
RUN chmod +x /startup.sh
|
|
|
|
ENTRYPOINT [ "/startup.sh" ] |