Skip to content

Commit

Permalink
container: add a development environment
Browse files Browse the repository at this point in the history
  • Loading branch information
Will committed Dec 2, 2023
1 parent 540f10f commit 1e3c6ad
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.cache
compile_commands.json
tmp_test_watcher
/out
/result
/watcher
/bazel-*
12 changes: 12 additions & 0 deletions container-devel
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM debian:latest
COPY . /app
RUN apt-get update -y \
&& apt-get install -y \
build-essential \
ca-certificates \
python3 \
cmake \
git \
jq
RUN app/tool/build --no-run-test
RUN cp app/out/this/Release/wtr.watcher /usr/local/bin/ww

0 comments on commit 1e3c6ad

Please sign in to comment.