Skip to content

Commit

Permalink
deps
Browse files Browse the repository at this point in the history
  • Loading branch information
cryi committed Oct 27, 2024
1 parent 74d7107 commit b63e1f6
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions containers/tezos/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ ENV TEZOS_USER=tezos \
REPO_API=https://api.github.com/repos/tez-capital/tezos/releases/latest

RUN apt-get update && apt-get install -y \
curl jq \
curl jq install libhidapi-libusb0 libsqlite3-0 libgmpxx4ldbl libpq5 libev4 \
unzip \
&& rm -rf /var/lib/apt/lists/*
&& rm -rf /var/lib/apt/lists/* && \
apt-get clean

RUN useradd -m -d ${TEZOS_HOME} -s /bin/bash ${TEZOS_USER}

Expand All @@ -36,6 +37,11 @@ RUN if [ "${TARGETPLATFORM}" = "linux/amd64" ]; then \
USER ${TEZOS_USER}
WORKDIR ${TEZOS_HOME}

RUN curl -o fetch-params.sh https://raw.githubusercontent.com/zcash/zcash/713fc761dd9cf4c9087c37b078bdeab98697bad2/zcutil/fetch-params.sh && \
chmod +x fetch-params.sh && \
./fetch-params.sh && \
rm fetch-params.sh

COPY ./scripts/ ${TEZOS_SHARE}/

ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]

0 comments on commit b63e1f6

Please sign in to comment.