Skip to content

Commit

Permalink
Update Verdictd commit rev in Dockerfile
Browse files Browse the repository at this point in the history
Signed-off-by: Jiale Zhang <[email protected]>
  • Loading branch information
jialez0 committed Apr 3, 2023
1 parent af368e8 commit 8e8f451
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM registry.cn-hangzhou.aliyuncs.com/alinux/alinux3 as builder
WORKDIR /usr/src/verdictd

ENV RATS_TLS_COMMIT 5de6fc3
ENV VERDICTD_COMMIT 1d632be
ENV VERDICTD_COMMIT 6579237

COPY . .

Expand Down Expand Up @@ -37,6 +37,10 @@ yum install -y --setopt=install_weak_deps=False --nogpgcheck libsgx-urts libtdx-
# Install rats-tls
RUN rpm -ivh /usr/src/verdictd/deps/rats-tls-tdx-0.6.4-1.al8.x86_64.rpm

# Install Rust toolchain
RUN curl https://sh.rustup.rs -sSf | bash -s -- -y; \
echo 'source $HOME/.cargo/env' >> $HOME/.bashrc

# Build and Install verdictd
RUN git reset --hard ${VERDICTD_COMMIT}; \
make verdictd && make install
Expand Down

0 comments on commit 8e8f451

Please sign in to comment.