Commit e87f1c0
Eric Bower
·
2026-07-17 09:31:49 -0400 EDT
parent cbbe3f9
fix: missing pico-ssh in ci script
M
Makefile
+1,
-1
| ... | ... | @@ -63,7 +63,7 @@ bp-pgs-standalone: bp-setup | |
| 63 | 63 | ||
| 64 | 64 | bp-pico: bp-setup | |
| 65 | 65 | $(DOCKER_BUILDX_BUILD) ghcr.io/picosh/pico/pico-ssh:$(DOCKER_TAG) --build-arg APP=pico --target release-ssh . | |
| 66 | - | .PHONY: bp-auth | |
| 66 | + | .PHONY: bp-pico | |
| 67 | 67 | ||
| 68 | 68 | bp-bouncer: bp-setup | |
| 69 | 69 | $(DOCKER_BUILDX_BUILD) ghcr.io/picosh/pico/bouncer:$(DOCKER_TAG) ./bouncer |
M
pico.sh
+1,
-0
| ... | ... | @@ -27,6 +27,7 @@ zmx run caddy -d docker buildx build --push --platform "$DOCKER_PLATFORM" | |
| 27 | 27 | zmx run bouncer docker buildx build --push --platform "$DOCKER_PLATFORM" -t "ghcr.io/picosh/pico/bouncer:$DOCKER_TAG" ./bouncer | |
| 28 | 28 | zmx wait "*" | |
| 29 | 29 | ||
| 30 | + | zmx run pico-ssh docker buildx build --push --platform "$DOCKER_PLATFORM" -t "ghcr.io/picosh/pico/pico-ssh:$DOCKER_TAG" --build-arg APP=pico --target release-ssh . | |
| 30 | 31 | zmx run auth docker buildx build --push --platform "$DOCKER_PLATFORM" -t "ghcr.io/picosh/pico/auth-web:$DOCKER_TAG" --build-arg APP=auth --target release-web . | |
| 31 | 32 | zmx run cdn docker buildx build --push --platform "$DOCKER_PLATFORM" -t "ghcr.io/picosh/pico/pgs-cdn:$DOCKER_TAG" --target release-web -f Dockerfile.cdn . | |
| 32 | 33 | zmx run standalone docker buildx build --push --platform "$DOCKER_PLATFORM" -t "ghcr.io/picosh/pgs:$DOCKER_TAG" --target release -f Dockerfile.standalone . |