update Dockerfile, build nightly
Some checks failed
Nightly Docker Build / build-and-push (push) Has been cancelled

This commit is contained in:
2025-07-03 19:52:59 -04:00
parent ee5e85f2b2
commit 9c0f8c470b
2 changed files with 61 additions and 15 deletions

View File

@ -0,0 +1,20 @@
name: Nightly Docker Build
on:
push:
schedule:
- cron: '0 0 * * *' # Midnight
workflow_dispatch: # Allow manual runs
jobs:
build-and-push:
runs-on: alpine:latest
steps:
- name: Install dependencies
run: apk add docker nodejs
- name: Login to Docker registry
run: docker login git.arinity.org -u matt -p "${{ secrets.DOCKER_PUSH_TOKEN }}"
- name: Checkout repository
uses: actions/checkout@v4
- name: Build & Push Docker image
run: docker build --push --no-cache -t git.arinity.org/meshsense-tools/meshsense:nightly .