Skip to content

Instantly share code, notes, and snippets.

@marvint24
marvint24 / Install-Module Gitea.log
Created May 16, 2025 08:47
Use NuGet Package Registry for PowerShell modules
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.
@marvint24
marvint24 / Dockerfile
Created October 21, 2022 20:18
A Dockerfile for building a PowerShell Docker Image for ARMv7 for my Raspberry Pi 2 B.
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