diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 86ee7fb..60d4248 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,15 +17,10 @@ jobs: ref: ${{ github.ref }} fetch-depth: 0 - - name: Install Podman + - name: Build Docker image run: | - sudo apt-get update - sudo apt-get install -y podman - - - name: Build container image with Podman - run: | - podman build -t dailytrends:latest . + sudo docker build -t dailytrends:latest . - - name: Test container image + - name: Test Docker image run: | - podman run --rm dailytrends:latest node --version \ No newline at end of file + sudo docker run --rm dailytrends:latest node --version \ No newline at end of file