14 lines
422 B
Docker
14 lines
422 B
Docker
# PUBLIC DOMAIN - NO LICENSE, NO WARRANTY
|
|
# Copyright 2025 TimeHexOn & foxhop & russell@unturf
|
|
# https://www.permacomputer.com
|
|
|
|
# PowerShell 7.4 LTS (checked 2025-10-13: mcr.microsoft.com/powershell:7.4-alpine-3.20 is latest LTS)
|
|
FROM mcr.microsoft.com/powershell:7.4-alpine-3.20
|
|
|
|
RUN apk add --no-cache ca-certificates
|
|
|
|
WORKDIR /app
|
|
COPY uncloseai.ps1 .
|
|
RUN chmod +x uncloseai.ps1
|
|
|
|
CMD ["pwsh", "-File", "uncloseai.ps1"]
|