Skip to content

Commit

Permalink
Upgrade to debian bullseye
Browse files Browse the repository at this point in the history
  • Loading branch information
kwabenantim committed Jun 27, 2024
1 parent 7a683b6 commit 021b181
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions appredict-chaste-libs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
FROM debian:buster-slim
FROM debian:bullseye-slim

USER root

RUN echo "deb http://deb.debian.org/debian buster main contrib non-free" >> /etc/apt/sources.list
RUN echo "deb http://deb.debian.org/debian bullseye main contrib non-free" >> /etc/apt/sources.list

# Install dependencies with recommended, applicable suggested and other useful packages
RUN apt-get update && \
apt-get install -y g++ cmake && \
apt-get install -y --no-install-recommends \
apt-get install -y g++ cmake && \
apt-get install -y --no-install-recommends \
wget \
git \
petsc-dev \
Expand All @@ -26,4 +26,4 @@ RUN apt-get update && \

ENV HOME=/home/appredict
RUN useradd -ms /bin/bash -d $HOME appredict
USER appredict
USER appredict
2 changes: 1 addition & 1 deletion appredict-no-emulators/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN find . ! -name shannon_wang_puglisi_weber_bers_2004.cellml ! -name ten_tussc

RUN mkdir -p ${dir_build}
WORKDIR ${dir_build}
RUN cmake -j ${build_processors} \
RUN cmake \
-DCMAKE_BUILD_TYPE=Release \
-DChaste_ERROR_ON_WARNING=OFF \
-DChaste_UPDATE_PROVENANCE=ON \
Expand Down

0 comments on commit 021b181

Please sign in to comment.