-
Notifications
You must be signed in to change notification settings - Fork 203
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update docker base image to ubuntu 22.04
Having migrated to C++20, we ran into a version of https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100346 By migrating to a more recent Ubuntu image, we benefit from more recent compiler versions which avoid the build errors. The additional library linkages for the benchmarks seem to have become required on some platforms in addition. Signed-off-by: Sam Stuewe <[email protected]>
- Loading branch information
1 parent
83e50ef
commit 84db009
Showing
3 changed files
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
FROM ubuntu:20.04 | ||
FROM ubuntu:22.04 | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
COPY . . | ||
|
||
RUN apt update && apt dist-upgrade -y | ||
RUN ./configure.sh | ||
RUN ./install-build-tools.sh | ||
RUN ./setup-dependencies.sh |