paperless-gpt/docker-build-and-push.sh
2024-09-23 14:59:50 +02:00

8 lines
279 B
Bash
Executable file

#!/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