12 lines
311 B
Markdown
12 lines
311 B
Markdown
# first build the image
|
|
|
|
(cd ..; DOCKER_BUILDKIT=1 docker buildx build --platform linux/amd64 -f aptos/Dockerfile.base -t aptos .)
|
|
|
|
# tag the image with the appropriate version
|
|
|
|
docker tag aptos:latest ghcr.io/wormhole-foundation/aptos:2.0.3
|
|
|
|
# push to ghcr
|
|
|
|
docker push ghcr.io/wormhole-foundation/aptos:2.0.3
|