Fix issue with keyerror in list comprehension (#775) #144
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.SAMPLEAPP_ACR_USERNAME }} | |
# Container registry password | |
password: ${{ secrets.SAMPLEAPP_ACR_PASSWORD }} | |
# Container registry server url | |
login-server: sampleappaoaichatgpt.azurecr.io | |
- uses: actions/checkout@v3 | |
- name: Build the Docker image | |
run: | |
docker build . --file WebApp.Dockerfile --tag sampleappaoaichatgpt.azurecr.io/sample-app-aoai-chatgpt:$(date +'%Y-%m-%d')_$GITHUB_RUN_NUMBER; | |
docker tag sampleappaoaichatgpt.azurecr.io/sample-app-aoai-chatgpt:$(date +'%Y-%m-%d')_$GITHUB_RUN_NUMBER sampleappaoaichatgpt.azurecr.io/sample-app-aoai-chatgpt:latest; | |
docker push sampleappaoaichatgpt.azurecr.io/sample-app-aoai-chatgpt:$(date +'%Y-%m-%d')_$GITHUB_RUN_NUMBER; | |
docker push sampleappaoaichatgpt.azurecr.io/sample-app-aoai-chatgpt:latest; | |