aptos_update: update aptos

This commit is contained in:
Josh Siegel 2022-12-12 21:50:00 +00:00 committed by Csongor Kiss
parent b3d68b0db6
commit 38b1d1c350
3 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
# first build the image
(cd ..; DOCKER_BUILDKIT=1 docker build -f aptos/Dockerfile.base -t aptos .)
# tag the image with the appropriate version
docker tag aptos:latest ghcr.io/wormhole-foundation/aptos:0.3.4
docker tag aptos:latest ghcr.io/wormhole-foundation/aptos:1.1.0
# push to ghcr
docker push ghcr.io/wormhole-foundation/aptos:0.3.4
docker push ghcr.io/wormhole-foundation/aptos:1.1.0

View File

@ -1,4 +1,4 @@
FROM ghcr.io/wormhole-foundation/aptos:0.4.0@sha256:19252a9d4f6d9f7e20074c3cfc98e6a81bea5736f8f8c3a4fb1bb09737a8e044 as aptos
FROM ghcr.io/wormhole-foundation/aptos:1.1.0@sha256:9240135c950207e0bbe70d188999343b59d50d506dcc67c1b5586c1dd57b443c as aptos
# Support additional root CAs
COPY cert.pem* /certs/

View File

@ -1,6 +1,6 @@
FROM rust:1.62@sha256:5777f201f507075309c4d2d1c1e8d8219e654ae1de154c844341050016a64a0c as aptos-node
RUN apt-get update && apt-get -y install libclang-dev jq cmake curl npm --no-install-recommends
RUN apt-get update && apt-get -y install libclang-dev jq cmake curl npm gcc g++ make lld
WORKDIR /tmp