ci: praying to the docker gods for this to work
Build and Deploy / build-docker (push) Failing after 1m28s Details

This commit is contained in:
antifallobst 2023-10-12 00:13:12 +02:00
parent 01d2d40bc4
commit d8ce7587c4
Signed by: antifallobst
GPG Key ID: 2B4F402172791BAF
1 changed files with 10 additions and 12 deletions

View File

@ -10,18 +10,16 @@ jobs:
build-docker: build-docker:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
# - name: Install Docker - name: Checkout
# run: curl -fsSL https://get.docker.com | sh uses: actions/checkout@v4
# - name: Checkout - name: Set up Docker Buildx
# uses: actions/checkout@v4 uses: docker/setup-buildx-action@v3
# - name: Set up Docker Buildx - name: Build
# uses: docker/setup-buildx-action@v3 uses: docker/build-push-action@v5
# - name: Build with:
# uses: docker/build-push-action@v5 context: .
# with: load: true
# context: . tags: nerdcult_frontend:latest
# load: true
# tags: nerdcult_frontend:latest
- name: Build Docker Image - name: Build Docker Image
run: docker build -t nerdcult_frontend . run: docker build -t nerdcult_frontend .
- name: Inspect - name: Inspect