Skip to content

Commit

Permalink
Add ETH_PRIVATE_KEY to Docker entrypoint (#982)
Browse files Browse the repository at this point in the history
* Add ETH_PRIVATE_KEY to Docker entrypoint

* Add deprecation warning for PRIV_KEY variable

Signed-off-by: Slava <20563034+veaceslavdoina@users.noreply.github.com>

---------

Signed-off-by: Slava <20563034+veaceslavdoina@users.noreply.github.com>
  • Loading branch information
veaceslavdoina committed Nov 4, 2024
1 parent 3a734af commit 2a4a379
Showing 1 changed file with 10 additions and 6 deletions.
16 changes: 10 additions & 6 deletions docker/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,16 @@ fi

# If marketplace is enabled from the testing environment,
# The file has to be written before Codex starts.
if [ -n "${PRIV_KEY}" ]; then
echo ${PRIV_KEY} > "private.key"
chmod 600 "private.key"
export CODEX_ETH_PRIVATE_KEY="private.key"
echo "Private key set"
fi
for key in PRIV_KEY ETH_PRIVATE_KEY; do
keyfile="private.key"
if [[ -n "${!key}" ]]; then
[[ "${key}" == "PRIV_KEY" ]] && echo "PRIV_KEY variable is deprecated and will be removed in the next releases, please use ETH_PRIVATE_KEY instead!"
echo "${!key}" > "${keyfile}"
chmod 600 "${keyfile}"
export CODEX_ETH_PRIVATE_KEY="${keyfile}"
echo "Private key set"
fi
done

# Circuit downloader
# cirdl [circuitPath] [rpcEndpoint] [marketplaceAddress]
Expand Down

0 comments on commit 2a4a379

Please sign in to comment.