Skip to content

Commit

Permalink
linux test dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
wangzhizhou committed Jan 21, 2024
1 parent e552a1a commit 63734bc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
opencv_build/
opencv_install/
product/
opencv_build/*
opencv_install/*
product/*
resources/
setup-vsc.sh
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@ ARG DEBIAN_FRONTEND=noninteractive

ENV TZ=Etc/GMT-8

RUN apt-get update && apt-get install -y cmake git clang
RUN apt-get update && apt-get install -y cmake git clang vim

COPY . /opt

WORKDIR /opt

# RUN ./build.sh
ENTRYPOINT [ "/bin/bash" ]

CMD [ "build.sh" ]

0 comments on commit 63734bc

Please sign in to comment.