Bump github.com/gofiber/fiber/v2 from 2.52.1 to 2.52.5 in /app/api (#8) #30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |