Files
donetick-notifier/Dockerfile
T
kelly ef66b632b5
Security / security (push) Failing after 2m10s
added forced OS updates within the docker container
2026-05-13 10:47:15 -05:00

15 lines
320 B
Docker

FROM mcr.microsoft.com/powershell:7.5-ubuntu-24.04
USER root
RUN apt-get update \
&& 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"]