Skip to content
Snippets Groups Projects

Fix deprecations + updates

1 file
+ 6
0
Compare changes
  • Side-by-side
  • Inline
+ 6
0
FROM debian:bookworm
# change to bash default for gitlab runner
RUN echo "dash dash/sh boolean false" | debconf-set-selections
RUN DEBIAN_FRONTEND=noninteractive dpkg-reconfigure dash
RUN apt-get update
RUN apt-get install -y cmake
RUN apt-get install -y lcov
@@ -22,9 +26,11 @@ RUN ./venv/bin/pip install -r doc-requirements.txt
COPY requirements.txt build-requirements.txt
RUN ./venv/bin/pip install -r build-requirements.txt
RUN ./venv/bin/conan profile detect
# add venv with conan to .bashrc
RUN echo "source /venv/bin/activate" >> /root/.bashrc
COPY . /libcaosdb/
WORKDIR /libcaosdb
RUN git rev-parse HEAD > libcaosdb_commit
Loading