Skip to content

Commit

Permalink
use boost 1.83-dev on 24.04
Browse files Browse the repository at this point in the history
up README

#56
  • Loading branch information
prudhomm committed Dec 28, 2023
1 parent 82cd03e commit 28f4149
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
7 changes: 6 additions & 1 deletion feelpp-env/Dockerfile-ubuntu-24.04
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@

RUN apt-get -qq update && \
apt-get -yq install \
libboost1.83-all-dev \
&& apt-get -y autoremove \
&& apt-get -y clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
11 changes: 8 additions & 3 deletions feelpp-env/README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ bash mkimg.sh -f ubuntu:22.04 -t ghcr.io/feelpp/feelpp-env:ubuntu-22.04 --
docker build -t ghcr.io/feelpp/feelpp-env:ubuntu-22.04 "ubuntu-22.04-clang++"
----

=== Kinetic
=== Noble

----
bash mkimg.sh -f ubuntu:22.10 -t ghcr.io/feelpp/feelpp-env:ubuntu-22.10 --
docker build -t ghcr.io/feelpp/feelpp-env:ubuntu-22.10 "ubuntu-22.10-clang++"
bash mkimg.sh -f ubuntu:24.04 -t ghcr.io/feelpp/feelpp-env:ubuntu-24.04 --
docker build -t ghcr.io/feelpp/feelpp-env:ubuntu-24.04 "ubuntu-24.04-clang++"
----

== Debian
Expand All @@ -52,6 +52,11 @@ bash mkimg.sh -f debian:12 -t feelpp/feelpp-env:debian-12 --
docker build -t ghcr.io/feelpp/feelpp-env:debian-12 "debian-12-clang++"
----

----
bash mkimg.sh -f debian:sid -t feelpp/feelpp-env:debian-sid --
docker build -t ghcr.io/feelpp/feelpp-env:debian-sid "debian-sid-clang++"
----

== Fedora

=== Fedora 36
Expand Down
2 changes: 1 addition & 1 deletion feelpp-env/mkimg.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ if test -f Dockerfile-$fromos-$fromtag; then
( cat "Dockerfile-$fromos-$fromtag"; echo ) >> "$dir/Dockerfile"
fi

if test $fromos != "fedora"; then
if test $fromos != "fedora" -a $fromtag != "24.04"; then
if test -f Dockerfile-deb-om-$fromos-$fromtag; then
( cat "Dockerfile-deb-om-$fromos-$fromtag"; echo ) >> "$dir/Dockerfile"
else
Expand Down

1 comment on commit 28f4149

@prudhomm
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#59

Please sign in to comment.