Created debug docker container for project

This commit is contained in:
2021-07-07 13:25:28 +02:00
parent ad8d3630bf
commit 16a84d6344
2 changed files with 13 additions and 2 deletions
+6 -1
View File
@@ -1,4 +1,9 @@
cmake-build-*/
docker/
docs/
scripts/
scripts/
debug.Dockerfile
# Include files:
!docker/example_detector.json
@@ -4,7 +4,13 @@ COPY . /sf_daq_buffer/
RUN mkdir /sf_daq_buffer/build && \
cd /sf_daq_buffer/build && \
# Build the project
cmake3 .. && \
make std-det-writer
make && \
# Deploy the test config.
mkdir /config && \
cp /sf_daq_buffer/docker/example_detector.json /config
WORKDIR /sf_daq_buffer/build