https://github.com/webmasterdevlin/container-app-ocr
https://github.com/webmasterdevlin/container-app-ocr
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/webmasterdevlin/container-app-ocr
- Owner: webmasterdevlin
- Created: 2024-08-17T10:27:07.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-28T20:47:33.000Z (almost 2 years ago)
- Last Synced: 2025-10-03T13:51:55.258Z (9 months ago)
- Language: Python
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# OCR mock service
- This is a container for an azure container apps
## How to build and push a docker image
- start docker
- login to the azure container registry
```zsh
az acr login --name centauricr
```
- build the container
```zsh
docker build --platform linux/amd64 -t centauricr.azurecr.io/centauri-ocr:latest .
```
- push the image
```zsh
docker push centauricr.azurecr.io/centauri-ocr:latest
```