paperless-gpt/docker-build-and-push.sh

9 lines
279 B
Bash
Raw Normal View History

2024-09-23 07:59:50 -05:00
#!/bin/sh -e
# Build the Docker image for amd64 and arm64
docker build --platform linux/arm64 -t icereed/paperless-gpt:latest .
docker build --platform linux/amd64 -t icereed/paperless-gpt:latest .
# Push the Docker image to Docker Hub
docker push icereed/paperless-gpt:latest