🐛 Update front and backend #16
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: Honeypot Dashboard | |
on: | |
push: | |
branches: | |
- S3-2.3/Passage_en_mono_repo | |
env: | |
DOCKER_USER: ${{ secrets.DOCKER_USER }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
DOCKER_CONFIG: ${{ github.workspace }}/.docker | |
jobs: | |
Backend: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Configure Docker credentials | |
run: | | |
mkdir $DOCKER_CONFIG | |
echo -n "$DOCKER_PASSWORD" | docker --config $DOCKER_CONFIG login --username $DOCKER_USER --password-stdin | |
- name: Build the Envoy image | |
run: | | |
cd ./Backend | |
docker build -t $DOCKER_USER/hb_dashboard_envoy -f Dockerfile.envoy . | |
- name: Build the Backend image | |
run: | | |
cd ./Backend | |
docker build -t $DOCKER_USER/hb_dashboard_back . | |
- name: Push the images | |
run: | | |
docker --config $DOCKER_CONFIG push $DOCKER_USER/hb_dashboard_envoy | |
docker --config $DOCKER_CONFIG push $DOCKER_USER/hb_dashboard_back | |
Frontend: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Configure Docker credentials | |
run: | | |
mkdir $DOCKER_CONFIG | |
echo -n "$DOCKER_PASSWORD" | docker --config $DOCKER_CONFIG login --username $DOCKER_USER --password-stdin | |
- name: Build protos | |
run: | | |
chmod 777 ./scripts/make_frontend_protos.sh | |
./scripts/make_frontend_protos.sh ./Honeypot/protos ./Frontend | |
- name: Build the Frontend image | |
run: | | |
cd ./Frontend | |
docker build -t $DOCKER_USER/hb_dashboard_front . | |
- name: Push the Frontend image | |
run: | | |
docker --config $DOCKER_CONFIG push $DOCKER_USER/hb_dashboard_front |