From f1ef8a8cfd60d40f737ddd720a5e09e9cf8bf7e5 Mon Sep 17 00:00:00 2001 From: James Brundage <+@noreply.github.com> Date: Sun, 29 Sep 2024 00:17:29 -0700 Subject: [PATCH] feat: 4bitcss Dockerfile updates ( Fixes #74, Fixes #76 ) Using Container.start.ps1 and fixing typo --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index acb4ea49f..83fde87cd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ COPY --from=powershell /bin /bin COPY --from=powershell /opt /opt # Set the module name to the name of the module we are building -ENV ModuleName=4bitcssb +ENV ModuleName=4bitcss ENV InstallPackages="build-essential","git" SHELL ["/bin/pwsh", "-nologo", "-command"] @@ -21,4 +21,4 @@ SHELL ["/bin/pwsh", "-nologo", "-command"] RUN --mount=type=bind,src=./,target=/Initialize /Initialize/Container.init.ps1 # Set the entrypoint to the script we just created. -ENTRYPOINT [ "/bin/pwsh" ] \ No newline at end of file +ENTRYPOINT [ "/bin/pwsh","-nologo","-noexit","-file","/Container.start.ps1" ] \ No newline at end of file