mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-04-30 15:42:26 +02:00
f9e14cbd78
This container is meant to run and test the jf-live-writer locally without the need to install the PHDF5 library in your local environment. Follow the instructions in the README file.
11 lines
239 B
Docker
11 lines
239 B
Docker
FROM paulscherrerinstitute/sf-daq_phdf5:1.0.0
|
|
|
|
COPY . /sf_daq_buffer/
|
|
|
|
RUN mkdir /sf_daq_buffer/build && \
|
|
cd /sf_daq_buffer/build && \
|
|
cmake3 -DBUILD_JF_LIVE_WRITER=ON .. && \
|
|
make jf-live-writer
|
|
|
|
WORKDIR /sf_daq_buffer/build
|