Skip to content

Working Build as per requirements (#1) (#2) #18

Working Build as per requirements (#1) (#2)

Working Build as per requirements (#1) (#2) #18

Workflow file for this run

# YAML file for Github Actions to use to build the Docker Image
name: Github Actions Build
on:
push:
branches: [ main, dev ]
pull_request:
branches: [ main, dev ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build the Indexer Docker Image
run: docker build . -f Dockerfile.indexer -t indexer
- name: Build the Api Docker Image
run: docker build . -f Dockerfile.api -t api