mirror of
https://github.com/paulscherrerinstitute/sf_daq_buffer.git
synced 2026-04-25 05:30:43 +02:00
17 lines
341 B
Docker
17 lines
341 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 && \
|
|
# Build the project
|
|
cmake3 .. && \
|
|
make && \
|
|
# Deploy the test config.
|
|
mkdir /config && \
|
|
cp /sf_daq_buffer/docker/example_detector.json /config
|
|
|
|
|
|
|
|
WORKDIR /sf_daq_buffer/build
|