Skip to content

Commit

Permalink
Better code understanding: move dm to micmac
Browse files Browse the repository at this point in the history
  • Loading branch information
kikislater committed Sep 17, 2024
1 parent dc8bf96 commit fe9007f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ RUN mkdir -p tmp /code
RUN mkdir -p /code

# Build MicMac
RUN git clone --depth 1 https://github.com/OpenDroneMap/micmac
RUN cd micmac && \
RUN git clone --depth 1 https://github.com/OpenDroneMap/micmac micmac-build
RUN cd micmac-build && \
rm -rf build && mkdir build && cd build && \
cmake \
-DBUILD_POISSON=0 \
Expand Down Expand Up @@ -79,7 +79,7 @@ COPY micmac/VERSION /code
COPY micmac/run.sh /code
COPY micmac/run.py /code

RUN apt clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /staging /var/www/micmac
RUN apt clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /staging /var/www/micmac-build

WORKDIR "/var/www"

Expand Down

0 comments on commit fe9007f

Please sign in to comment.