Skip to content

Commit

Permalink
Fix docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
undera committed Jun 13, 2022
1 parent 5af9bf3 commit 266f62a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,11 @@ FROM python

RUN pip install bzt # to cache the step

COPY --from=builder /build/src/encarno /usr/bin/encarno
COPY --from=builder /build/src/encarno /root/.bzt/encarno-taurus/0.0/encarno

ADD taurus /tmp/taurus

RUN pip install /tmp/taurus

RUN bzt /tmp/taurus/dummy.yml # sanity test
# install and sanity check
RUN pip install /tmp/taurus && bzt /tmp/taurus/dummy.yml && rm -r /tmp/taurus

ENTRYPOINT ["sh", "-c", "bzt \"$@\"", "ignored"]

0 comments on commit 266f62a

Please sign in to comment.