Add action to build backend image. #1
Workflow file for this run
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
name: Generate Docker Containers | |
on: | |
push: | |
tags: | |
- '*' | |
jobs: | |
backend: | |
name: Build backend image | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build image | |
working-directory: backend | |
run: docker build -t daemontus/bbm-backend . | |