Skip to content

Commit

Permalink
Fix Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
AlCutter committed Dec 13, 2023
1 parent afcec35 commit 492add3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,14 @@ WORKDIR /build

COPY . .

# The Makefile expects the verifiers to be in files, so make it so.
RUN echo "${APPLET_PUBLIC_KEY}" > /tmp/applet.pub
RUN echo "${LOG_PUBLIC_KEY}" > /tmp/log.pub

# Firmware transparency parameters for output binary.
ENV LOG_ORIGIN=${LOG_ORIGIN} \
APPLET_PUBLIC_KEY="/tmp/applet.pub" \
LOG_PUBLIC_KEY="/tmp/log.pub" \
GIT_SEMVER_TAG=${GIT_SEMVER_TAG}

RUN echo "${APPLET_PUBLIC_KEY}" > /tmp/applet.pub
RUN echo "${LOG_PUBLIC_KEY}" > /tmp/log.pub
RUN make trusted_os_release

0 comments on commit 492add3

Please sign in to comment.