Files
kelly cfcaafffd6
Security / security (push) Successful in 1m2s
Security / security (pull_request) Successful in 1m2s
resolving issues #4 and #5 - security findings
2026-05-16 23:23:22 -05:00

21 lines
463 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
ENV SCHEDULE=60
ENV GLUETUNFORWARDEDPORTFILE="/tmp/forwarded_port"
VOLUME /tmp
WORKDIR /data
COPY ["Start-QBTGluetunPortMgr.ps1", "/data/"]
ENTRYPOINT ["pwsh", "-Command", "/data/Start-QBTGluetunPortMgr.ps1"]