initial workflow for building docker image
Some checks failed
Build Docker Image / build (push) Failing after 4m28s

This commit is contained in:
Tudor Sitaru
2025-10-09 15:23:07 +01:00
parent 2964825477
commit 96aed142f2
3 changed files with 36 additions and 0 deletions

BIN
.DS_Store vendored

Binary file not shown.

View File

@@ -0,0 +1,33 @@
name: Build Docker Image
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build Docker image
uses: docker/build-push-action@v5
with:
context: .
push: false
tags: parentzone-downloader:latest
cache-from: type=gha
cache-to: type=gha,mode=max
- name: Test Docker image
run: |
docker run --rm parentzone-downloader:latest python --version
docker run --rm parentzone-downloader:latest ls -la /app

3
.gitignore vendored
View File

@@ -1,3 +1,6 @@
downloaded_images downloaded_images
parentzone_images parentzone_images
snapshots snapshots
__pycache__
.DS_Store