diff --git a/.dockerignore b/.dockerignore index 10f3c3d..6dfa6b9 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,2 +1,6 @@ /build* +generators +misc +tmtc +doc diff --git a/bsp_hosted/Dockerfile b/bsp_hosted/Dockerfile index d50e842..327b5f4 100644 --- a/bsp_hosted/Dockerfile +++ b/bsp_hosted/Dockerfile @@ -4,8 +4,8 @@ FROM alpine:latest # RUN apt-get install -y cmake g++ RUN apk add cmake make g++ -COPY . /usr/src/app WORKDIR /usr/src/app +COPY . . RUN set -ex; \ rm -rf build-hosted; \ diff --git a/bsp_linux/Dockerfile b/bsp_linux/Dockerfile index 61a17c0..4a6ac88 100644 --- a/bsp_linux/Dockerfile +++ b/bsp_linux/Dockerfile @@ -4,8 +4,8 @@ FROM alpine:latest # RUN apt-get install -y cmake g++ RUN apk add cmake make g++ -COPY . /usr/src/app WORKDIR /usr/src/app +COPY . . RUN set -ex; \ rm -rf build-linux; \