diff options
author | Starfall <us@starfall.systems> | 2022-11-28 18:18:55 -0600 |
---|---|---|
committer | Starfall <us@starfall.systems> | 2022-11-28 18:18:55 -0600 |
commit | f41eb424972cf0bc6395be7d7dc7e7049c8998a2 (patch) | |
tree | 2cb0e61e20540f3eaabd51942cb5aa1deae782f5 | |
parent | 7972854512ddb50eb84f9d8bdc50fdc48854df09 (diff) |
new dockerfile requires buildkit, which took an annoying long time to figure out
-rwxr-xr-x | build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sh b/build.sh index ea2b14d05..e697c5ede 100755 --- a/build.sh +++ b/build.sh @@ -16,6 +16,6 @@ if ! systemctl is-active docker &>/dev/null; then fi fi -docker build --build-arg SOURCE_COMMIT=$commit --tag pluralcafe/mastodon:edge . +docker buildx build --build-arg SOURCE_COMMIT=$commit --tag pluralcafe/mastodon:edge . echo 'Docker image built. Push to Docker Hub with `docker push pluralcafe/mastodon:edge`.' |