From 93a0ad6af323368f213f9324ac1f4dce9568d6d1 Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Fri, 21 May 2021 17:08:52 +0200 Subject: [PATCH] updated dockerignore --- .dockerignore | 4 ++++ bsp_hosted/Dockerfile | 2 +- bsp_linux/Dockerfile | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) 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; \