Skip to content

Commit

Permalink
Fix Dockerfile build
Browse files Browse the repository at this point in the history
  • Loading branch information
robotastic committed Oct 10, 2021
1 parent b5b9899 commit 23faa94
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ WORKDIR /src

COPY . .

RUN cmake . && make && make install
WORKDIR /src/build

RUN cmake .. && make && make install

#USER nobody

Expand Down

0 comments on commit 23faa94

Please sign in to comment.