Files
donetick-notifier/Dockerfile
T
kelly 3a39a39be8
Security / security (push) Successful in 2m5s
allowing for setting timezone
2026-05-14 21:20:00 -05:00

17 lines
380 B
Docker

FROM mcr.microsoft.com/powershell:7.5-ubuntu-24.04
USER root
RUN apt-get update \
&& apt-get install -y --no-install-recommends tzdata \
&& apt-get dist-upgrade -y \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
USER 1000:1000
WORKDIR /data
COPY ["Start-DoneTickNotifier.ps1", "/data/"]
ENTRYPOINT ["pwsh", "-Command", "/data/Start-DoneTickNotifier.ps1"]