Skip to content

Commit

Permalink
make use of optional installs consistent.
Browse files Browse the repository at this point in the history
  • Loading branch information
devinleighsmith committed Apr 26, 2021
1 parent 121e549 commit 9801eca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/docker/node/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ ARG SOVRIN_VERSION
ENV SOVRIN_INSTALL=$SOVRIN_INSTALL
ENV SOVRIN_VERSION=${SOVRIN_VERSION:-1.1.69}
COPY . .
RUN if [ -n "$SOVRIN_INSTALL" ]; then \
RUN if [ "$SOVRIN_INSTALL" = "yes" ]; then \
dpkg -i "sovrin_${SOVRIN_VERSION}_amd64.deb"; \
fi

Expand Down

0 comments on commit 9801eca

Please sign in to comment.