diff --git a/Dockerfile b/Dockerfile index add7f2eec31..ffad721277c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,13 +8,15 @@ COPY go.sum . RUN go mod download -ADD internal internal -ADD testing testing -ADD modules modules -ADD LICENSE LICENSE - -COPY contrib/devtools/Makefile contrib/devtools/Makefile -COPY Makefile . +# TODO: add specific Dockerfile to each branch adding only the required directories. +#ADD internal internal +#ADD testing testing +#ADD modules modules +#ADD LICENSE LICENSE +#COPY contrib/devtools/Makefile contrib/devtools/Makefile +#COPY Makefile . + +ADD . . RUN make build