added compose
This commit is contained in:
17
bsp_linux/Dockerfile
Normal file
17
bsp_linux/Dockerfile
Normal file
@ -0,0 +1,17 @@
|
||||
FROM ubuntu:latest
|
||||
|
||||
RUN apt-get update -y && apt-get upgrade -y
|
||||
RUN apt-get install -y cmake g++
|
||||
|
||||
COPY . /usr/src/app
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
RUN rm -rf build-hosted
|
||||
|
||||
RUN set -ex; \
|
||||
mkdir build-linux; \
|
||||
cd build-linux; \
|
||||
cmake -DCMAKE_BUILD_TYPE=Release -DOS_FSFW=linux ..;
|
||||
|
||||
ENTRYPOINT ["cmake", "--build", "build-linux"]
|
||||
CMD ["-j"]
|
Reference in New Issue
Block a user