Skip to content

Commit

Permalink
fix warnings during Docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
rr- committed Mar 9, 2021
1 parent 5bf3db2 commit 2a6ac9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ RUN mkdir /app
WORKDIR /app
ADD .git .git
ADD src src
ADD test test
ADD Makefile Makefile

CMD ["make", "build"]
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ clean:

docker_build:
docker build -t tomb1main .
docker run -v $(CWD)/.git:/app/.git -v $(CWD)/build:/app/build tomb1main
docker run --rm -v $(CWD)/.git:/app/.git -v $(CWD)/build:/app/build tomb1main

lint:
clang-format-10 -i $(C_FILES) $(H_FILES) $(TEST_C_FILES) $(TEST_H_FILES)
Expand Down

0 comments on commit 2a6ac9f

Please sign in to comment.