updating dockerfile for best practices

This commit is contained in:
2026-05-10 22:34:59 -05:00
parent 8d37b966ae
commit 5cc265583d
3 changed files with 20 additions and 1 deletions
+3 -1
View File
@@ -1,6 +1,8 @@
FROM mcr.microsoft.com/powershell
USER 1000:1000
WORKDIR /data
ADD ["Start-DoneTickNotifier.ps1", "/data/"]
COPY ["Start-DoneTickNotifier.ps1", "/data/"]
ENTRYPOINT ["pwsh", "-Command", "/data/Start-DoneTickNotifier.ps1"]