4 Commits

Author SHA1 Message Date
kelly bd9165311f removing sast - updated dockerfile for best practies
Build and Push Docker Image / build (push) Successful in 39s
2026-05-10 22:32:46 -05:00
kelly 76ddfcca2f SAST config update
Build and Push Docker Image / build (push) Failing after 5m37s
2026-05-10 22:22:38 -05:00
kelly 57c76771d4 adding SAST
Build and Push Docker Image / build (push) Failing after 5m45s
2026-05-10 21:45:55 -05:00
kelly fa9a5ad430 Merge pull request 'adding gitea actions autobuild to docker hub' (#3) from v0.2.1 into main
Build and Push Docker Image / build (push) Successful in 19s
Reviewed-on: #3
2026-05-04 23:07:13 -05:00
2 changed files with 20 additions and 1 deletions
+17
View File
@@ -8,11 +8,28 @@ on:
jobs:
build:
runs-on: ubuntu-latest
# permissions:
# contents: read # Required to checkout and read repo files
# security-events: write # Required to upload SARIF files to Security tab
steps:
- name: Checkout
uses: actions/checkout@v4
# - name: Run Trivy vulnerability scanner in repo mode
# uses: aquasecurity/trivy-action@v0.36.0
# with:
# scan-type: 'fs'
# ignore-unfixed: true
# format: 'sarif'
# output: 'trivy-results.sarif'
# severity: 'CRITICAL,HIGH'
# - name: Upload Trivy scan results to GitHub Security tab
# uses: github/codeql-action/upload-sarif@v4
# with:
# sarif_file: 'trivy-results.sarif'
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
+3 -1
View File
@@ -1,11 +1,13 @@
FROM mcr.microsoft.com/powershell
USER 1000:1000
ENV SCHEDULE=60
ENV GLUETUNFORWARDEDPORTFILE="/tmp/forwarded_port"
VOLUME /tmp
WORKDIR /data
ADD ["Start-QBTGluetunPortMgr.ps1", "/data/"]
COPY ["Start-QBTGluetunPortMgr.ps1", "/data/"]
ENTRYPOINT ["pwsh", "-Command", "/data/Start-QBTGluetunPortMgr.ps1"]