one run command now
This commit is contained in:
parent
f6d4e2141e
commit
ff5f3b2aae
@ -6,9 +6,8 @@ RUN apt-get install -y cmake g++
|
||||
COPY . /usr/src/app
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
RUN rm -rf build-hosted
|
||||
|
||||
RUN set -ex; \
|
||||
rm -rf build-hosted; \
|
||||
mkdir build-hosted; \
|
||||
cd build-hosted; \
|
||||
cmake -DCMAKE_BUILD_TYPE=Release -DOS_FSFW=host ..;
|
||||
|
@ -6,9 +6,8 @@ RUN apt-get install -y cmake g++
|
||||
COPY . /usr/src/app
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
RUN rm -rf build-linux
|
||||
|
||||
RUN set -ex; \
|
||||
rm -rf build-linux; \
|
||||
mkdir build-linux; \
|
||||
cd build-linux; \
|
||||
cmake -DCMAKE_BUILD_TYPE=Release -DOS_FSFW=linux ..;
|
||||
|
Reference in New Issue
Block a user