Files
donetick-notifier/Dockerfile
T
kelly dd81fcff6f
Build and Push Docker Image / build (push) Successful in 29s
updating dockerfile for best practices
2026-05-10 22:34:59 -05:00

8 lines
179 B
Docker

FROM mcr.microsoft.com/powershell
USER 1000:1000
WORKDIR /data
COPY ["Start-DoneTickNotifier.ps1", "/data/"]
ENTRYPOINT ["pwsh", "-Command", "/data/Start-DoneTickNotifier.ps1"]