Skip to content

Commit

Permalink
fix: dockerfile to use new build
Browse files Browse the repository at this point in the history
  • Loading branch information
jaromil committed Oct 8, 2024
1 parent 756a543 commit dfbe41a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,11 @@ COPY build /build
COPY Makefile Makefile

RUN apk add --no-cache linux-headers build-base cmake readline-dev
RUN make linux
RUN cp /src/zenroom /usr/local/bin/zenroom
RUN make -f build/musl-linux.mk COMPILER=gcc
RUN mkdir -p /usr/local/bin/
RUN cp zenroom /usr/local/bin/
RUN cp zencode-exec /usr/local/bin/
RUN cp zencc /usr/local/bin/

ENTRYPOINT ["zenroom"]

0 comments on commit dfbe41a

Please sign in to comment.