From 685c08b9ca2b739abf584776553dfac3b576470f Mon Sep 17 00:00:00 2001 From: dan Date: Wed, 27 Mar 2024 12:47:58 -0400 Subject: [PATCH] update --- .github/workflows/dockerhub.yml | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dockerhub.yml b/.github/workflows/dockerhub.yml index 7eef622a..24554c67 100644 --- a/.github/workflows/dockerhub.yml +++ b/.github/workflows/dockerhub.yml @@ -225,4 +225,24 @@ jobs: context: ./telematic_system/telematic_cloud_messaging/ file: ./telematic_system/telematic_cloud_messaging/local.Dockerfile push: true - tags: usdotfhwastoldev/telematic_local_messaging:${{ github.ref_name }} \ No newline at end of file + tags: usdotfhwastoldev/telematic_local_messaging:${{ github.ref_name }} + + dockerhub-telematic-local-web-server: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 + - name: Login to DockerHub + uses: docker/login-action@v2 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Build + uses: docker/build-push-action@v3 + with: + context: ./telematic_system/telematic_apps/web_app/server + file: ./telematic_system/telematic_apps/web_app/server/local.Dockerfile + push: true + tags: usdotfhwastoldev/telematic_local_web_server:${{ github.ref_name }} \ No newline at end of file