Attempt to set up docker to be used for pull and inspect

This commit is contained in:
Ben 2025-04-22 12:32:50 +02:00
parent 02ef655a40
commit 07b57007e8
No known key found for this signature in database
GPG Key ID: 0F16E812E736C24B

View File

@ -2,6 +2,9 @@ FROM mcr.microsoft.com/dotnet/sdk:8.0
COPY --chmod=0755 docker/docker-entrypoint.sh /
RUN apt-get update
RUN apt-get install docker -y
ENTRYPOINT ["/docker-entrypoint.sh"]
CMD ["dotnet", "test"]