Skip to content

Updated frontend for k8s and fixed a backend bug to correctly color t… #17

Updated frontend for k8s and fixed a backend bug to correctly color t…

Updated frontend for k8s and fixed a backend bug to correctly color t… #17

Workflow file for this run

# This workflow will build the containers for the frontend and backend
name: Docker Container Build
on:
push:
branches: [ "master", "mqtt-test" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build the Simulator image
run: docker build Simulator/. --tag simulator_frontend:$(date +%s)
- name: Build the Frontend image
run: docker build frontend/. --tag simulator_backend:$(date +%s)