File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -260,12 +260,13 @@ jobs:
260
260
uses : docker/build-push-action@v6
261
261
env :
262
262
DOCKER_BUILD_RECORD_UPLOAD : false
263
- OE_WILDMETA_BACKEND_ECDSA_PUBKEY : ${{ secrets.OE_WILDMETA_BACKEND_ECDSA_PUBKEY }}
264
263
with :
265
264
context : .
266
265
file : tee-worker/omni-executor/Dockerfile
267
266
tags : litentry/omni-executor:${{ env.RELEASE_TAG }}
268
267
target : release
268
+ build-args : |
269
+ OE_WILDMETA_BACKEND_ECDSA_PUBKEY=${{ secrets.OE_WILDMETA_BACKEND_ECDSA_PUBKEY }}
269
270
270
271
- run : docker images --all
271
272
Original file line number Diff line number Diff line change @@ -45,8 +45,8 @@ CMD ["$BIN_DIR/executor-worker"]
45
45
# #################################################
46
46
FROM gramineproject/gramine:stable-jammy AS sgx-builder
47
47
48
- ARG WILDMETA_BACKEND_ECDSA_PUBKEY ="020000000000000000000000000000000000000000000000000000000000000000"
49
- ENV WILDMETA_BACKEND_ECDSA_PUBKEY=$WILDMETA_BACKEND_ECDSA_PUBKEY
48
+ ARG OE_WILDMETA_BACKEND_ECDSA_PUBKEY ="020000000000000000000000000000000000000000000000000000000000000000"
49
+ ENV OE_WILDMETA_BACKEND_ECDSA_PUBKEY=$OE_WILDMETA_BACKEND_ECDSA_PUBKEY
50
50
51
51
RUN apt-get update
52
52
@@ -95,7 +95,7 @@ RUN apt-get install -y \
95
95
pkg-config \
96
96
ca-certificates
97
97
98
- RUN mkdir -p /wkdir /wkdir/local /wkdir/storage_db
98
+ RUN mkdir -p /wkdir /wkdir/local /wkdir/storage_db
99
99
100
100
COPY --from=sgx-builder $BUILD_DIR/omni-executor $BIN_DIR/omni-executor
101
101
COPY --from=sgx-builder $BUILD_DIR/omni-executor.manifest.sgx $BIN_DIR/omni-executor.manifest.sgx
You can’t perform that action at this time.
0 commit comments