000 refactor delete extra code #4269
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: Docker Build Images | |
on: pull_request | |
jobs: | |
build_backend: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build the Docker image for backend | |
run: docker build . --file Dockerfile --tag brainup/brn-backend | |
- name: List of docker images | |
run: docker images | |
build_frontend: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build the Docker image for frontent | |
run: docker build . --file Dockerfile_frontend --tag brainup/brn-frontend | |
- name: List of docker images | |
run: docker images |