This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2025/05/16 10:20:54 ...ges/helper/helper.go:34:LogAndProcessError() [D] package does not exist | |
2025/05/16 10:20:54 ...ges/helper/helper.go:34:LogAndProcessError() [D] package does not exist | |
2025/05/16 10:20:54 ...eb/routing/logger.go:102:func1() [I] router: completed GET /api/packages/marvint24/nuget/registration/pwshtest/0.1.json for 192.168.1.45:0, 404 Not Found in 1.3ms @ nuget/nuget.go:285(nuget.RegistrationLeafV3) | |
2025/05/16 10:20:54 ...eb/routing/logger.go:102:func1() [I] router: completed GET /api/packages/marvint24/nuget/registration/pwshtest/0.1.json for 192.168.1.45:0, 404 Not Found in 1.3ms @ nuget/nuget.go:285(nuget.RegistrationLeafV3) | |
2025/05/16 10:20:54 ...eb/routing/logger.go:102:func1() [I] router: completed GET /api/packages/marvint24/nuget/registration/pwshtest/0.1.0.json for 192.168.1.45:0, 200 OK in 3.5ms @ nuget/nuget.go:285(nuget.RegistrationLeafV3) | |
2025/05/16 10:20:54 ...eb/routing/logger.go:102:func1() [I] router: completed GET /api/packages/marvint24/nuget/registration/pwshtest/0.1.0. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM debian:buster-slim | |
ENV TZ="Europe/Berlin" | |
RUN apt-get update | |
RUN apt-get install '^libssl1.0.[0-9]$' libunwind8 wget -y | |
RUN wget https://github.com/PowerShell/PowerShell/releases/download/v7.2.6/powershell-7.2.6-linux-arm32.tar.gz | |
RUN mkdir ~/powershell | |
RUN tar -xvf ./powershell-7.2.6-linux-arm32.tar.gz -C ~/powershell | |
RUN rm powershell-7.2.6-linux-arm32.tar.gz | |
RUN cp -s /root/powershell/pwsh /usr/bin/pwsh |