mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-04-21 02:14:36 +02:00
14 lines
336 B
Docker
14 lines
336 B
Docker
FROM paulscherrerinstitute/std-daq-buffer-base:1.0.3
|
|
|
|
COPY . /std_daq_buffer/
|
|
|
|
RUN mkdir /std_daq_buffer/build && \
|
|
cd /std_daq_buffer/build && \
|
|
# Build the project
|
|
cmake3 .. -DUSE_EIGER=1 && \
|
|
make && \
|
|
# Deploy the test config.
|
|
cp /std_daq_buffer/docker/example_detector.json .
|
|
|
|
WORKDIR /std_daq_buffer/build
|