From df4544c52b00ff154fb7402acda5fb9c7209b23f Mon Sep 17 00:00:00 2001 From: Ira Limitanei Date: Tue, 14 May 2024 17:12:22 +0900 Subject: [PATCH] fix: use correct copy path --- toolboxes/powershell-toolbox/Containerfile.powershell | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/toolboxes/powershell-toolbox/Containerfile.powershell b/toolboxes/powershell-toolbox/Containerfile.powershell index efbb871..416004f 100644 --- a/toolboxes/powershell-toolbox/Containerfile.powershell +++ b/toolboxes/powershell-toolbox/Containerfile.powershell @@ -9,10 +9,10 @@ LABEL com.github.containers.toolbox="true" \ ENV POWERSHELL_TELEMETRY_OPTOUT=1 ENV DOTNET_CLI_TELEMETRY_OPTOUT=1 -# COPY ./toolboxes/powershell-toolbox/packages.powershell /tmp -COPY packages.powershell /tmp -# COPY ./toolboxes/powershell-toolbox/profile.ps1 /tmp/Microsoft.PowerShell_profile.ps1 -COPY profile.ps1 /tmp/Microsoft.PowerShell_profile.ps1 +# COPY packages.powershell /tmp +# COPY profile.ps1 /tmp/Microsoft.PowerShell_profile.ps1 +COPY ./toolboxes/powershell-toolbox/packages.powershell /tmp +COPY ./toolboxes/powershell-toolbox/profile.ps1 /tmp/Microsoft.PowerShell_profile.ps1 SHELL ["/bin/ash", "-eo", "pipefail", "-c"]