ci: testing docker stuff
Build and Deploy / build-docker (push) Failing after 2s Details

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

View File

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