Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion platform/scripts/build
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ cp ./functions/docker/python.Dockerfile ./dist/dockerfiles/python.Dockerfile
cd ./support/bridge-task
timestamp=$(date +%Y%m%d%H%M%S)
docker buildx create --name multi --driver docker-container --use
docker buildx build --platform linux/amd64,linux/arm64 -t ghcr.io/sst/sst/bridge-task:$timestamp -t ghcr.io/sst/sst/bridge-task:latest $([ "$DOCKER_PUSH" = "true" ] && echo "--push") .
docker buildx build --platform linux/amd64,linux/arm64 -t ghcr.io/anomalyco/sst/bridge-task:$timestamp -t ghcr.io/anomalyco/sst/bridge-task:latest $([ "$DOCKER_PUSH" = "true" ] && echo "--push") .


cd $ORIGINAL_DIR
4 changes: 3 additions & 1 deletion platform/src/components/aws/task.ts
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,9 @@ export class Task extends Component implements Link.Linkable {
return [
{
...v[0],
image: output("ghcr.io/sst/sst/bridge-task:20241224005724"),
image: output(
"ghcr.io/anomalyco/sst/bridge-task:20241224005724",
),
environment: {
...v[0].environment,
SST_TASK_ID: name,
Expand Down