Merge pull request #227 from mcayland/fix/update-ubuntu-version

Dockerfile: update Ubuntu base image from 20.04 to 22.04
This commit is contained in:
Wolfgang Thaller 2024-01-24 03:08:39 +01:00 committed by GitHub
commit 4ff2d7d902
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -1,12 +1,12 @@
# vim:ft=dockerfile
# Base image
FROM ubuntu:20.04 AS base
FROM ubuntu:22.04 AS base
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
cmake libgmp-dev libmpfr-dev libmpc-dev \
libboost-all-dev bison texinfo \
libboost-all-dev bison texinfo bzip2 \
ruby flex curl g++ git macutils
# Add toolchain to default PATH