Add anaconda to the base container for the daq debug

This commit is contained in:
2021-07-12 17:57:15 +02:00
parent 191057ebc0
commit ea29dd5655
2 changed files with 3 additions and 3 deletions
+2 -2
View File
@@ -1,11 +1,11 @@
FROM paulscherrerinstitute/sf-daq_phdf5:1.0.0
FROM paulscherrerinstitute/sf-daq_phdf5:1.0.1
COPY . /sf_daq_buffer/
RUN mkdir /sf_daq_buffer/build && \
cd /sf_daq_buffer/build && \
# Build the project
cmake3 .. -DUSE_EIGER=1&& \
cmake3 .. -DUSE_EIGER=1 && \
make && \
# Deploy the test config.
cp /sf_daq_buffer/docker/example_detector.json .
+1 -1
View File
@@ -1,6 +1,6 @@
#!/bin/bash
VERSION=1.0.0
VERSION=1.0.1
docker build --no-cache=true -f phdf5.Dockerfile -t paulscherrerinstitute/sf-daq_phdf5 .
docker tag paulscherrerinstitute/sf-daq_phdf5 paulscherrerinstitute/sf-daq_phdf5:$VERSION