mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-04-21 03:34:36 +02:00
14 lines
263 B
Docker
14 lines
263 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 .. && \
|
|
make std-stream-send
|
|
|
|
WORKDIR /sf_daq_buffer/build
|
|
|
|
ENTRYPOINT ["/sf_daq_buffer/build/std_stream"]
|
|
|