fix buildx 2
Some checks failed
Build Docker Image / build (pull_request) Failing after 16s

This commit is contained in:
albert
2025-07-30 12:26:23 +02:00
parent c40e84d4d4
commit 0e9979ff83

View File

@ -17,16 +17,15 @@ jobs:
ref: ${{ github.ref }} ref: ${{ github.ref }}
fetch-depth: 0 fetch-depth: 0
- name: Set up Docker Buildx - name: Install Podman
uses: docker/setup-buildx-action@v3
with:
driver: docker-container
install: true
- name: Build Docker image
run: | run: |
docker build -t dailytrends:latest . sudo apt-get update
sudo apt-get install -y podman
- name: Test Docker image - name: Build container image with Podman
run: | run: |
docker run --rm dailytrends:latest node --version podman build -t dailytrends:latest .
- name: Test container image
run: |
podman run --rm dailytrends:latest node --version