diff --git a/.gitea/workflows/build-container.yml b/.gitea/workflows/build-container.yml index 8261140..fe5af0d 100644 --- a/.gitea/workflows/build-container.yml +++ b/.gitea/workflows/build-container.yml @@ -15,14 +15,14 @@ jobs: build: runs-on: docker steps: - - name: Install Node.js + - name: Install dependencies run: | if command -v apk > /dev/null; then - apk add --no-cache nodejs npm + apk add --no-cache nodejs npm docker git elif command -v apt-get > /dev/null; then - apt-get update && apt-get install -y nodejs npm + apt-get update && apt-get install -y nodejs npm docker.io git elif command -v yum > /dev/null; then - yum install -y nodejs npm + yum install -y nodejs npm docker git fi - name: Checkout