mirror of
https://github.com/icereed/paperless-gpt.git
synced 2025-03-12 04:48:02 -05:00
8 lines
279 B
Bash
Executable file
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
|