important fix

This commit is contained in:
Robin Müller 2021-05-20 23:07:55 +02:00
parent 0b81b25587
commit 53c420cf69
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC
1 changed files with 4 additions and 3 deletions

View File

@ -1,7 +1,7 @@
FROM gcc:11
FROM ubuntu:latest
RUN apt-get update -y && apt-get upgrade -y
RUN apt-get install -y cmake
RUN apt-get install -y cmake g++
COPY . /usr/src/app
WORKDIR /usr/src/app
@ -13,4 +13,5 @@ RUN set -ex; \
cd build-hosted; \
cmake -DCMAKE_BUILD_TYPE=Release -DOS_FSFW=host ..;
ENTRYPOINT ["sh", "-c", "cmake --build build-hosted -j"]
ENTRYPOINT ["cmake", "--build", "build-hosted"]
CMD ["-j"]