Rebuild static files (#491) #100
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 Image CI | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Azure Container Registry Login | |
uses: Azure/docker-login@v1 | |
with: | |
# Container registry username | |
username: ${{ secrets.ACR_USERNAME }} | |
# Container registry password | |
password: ${{ secrets.ACR_PASSWORD }} | |
# Container registry server url | |
login-server: ${{ secrets.ACR_LOGIN_SERVER }} | |
- uses: actions/checkout@v3 | |
- name: Build the Docker image | |
run: | |
docker build . --file WebApp.Dockerfile --tag fruoccopublic.azurecr.io/sample-app-aoai-chatgpt:$(date +'%Y-%m-%d')_$GITHUB_RUN_NUMBER; | |
docker tag fruoccopublic.azurecr.io/sample-app-aoai-chatgpt:$(date +'%Y-%m-%d')_$GITHUB_RUN_NUMBER fruoccopublic.azurecr.io/sample-app-aoai-chatgpt:latest; | |
docker push fruoccopublic.azurecr.io/sample-app-aoai-chatgpt:$(date +'%Y-%m-%d')_$GITHUB_RUN_NUMBER; | |
docker push fruoccopublic.azurecr.io/sample-app-aoai-chatgpt:latest; | |