Retro68/Dockerfile
Mark Cave-Ayland 0649693436 Dockerfile: bring build up to date with that in azure-pipelines.yml
Update Dockerfile to use Ubuntu 20.04 and the updated package list from
azure-pipelines.yml. Also explicitly include the g++ package into the container
without which configure will error out with a 'configure: error: C++ preprocessor
"/lib/cpp" fails sanity check' error.
2023-12-16 12:59:53 +01:00

16 lines
371 B
Docker

# vim:ft=dockerfile
FROM ubuntu:20.04
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
cmake libgmp-dev libmpfr-dev libmpc-dev \
libboost-all-dev bison texinfo \
ruby flex curl g++
ADD . /Retro68
RUN mkdir /Retro68-build
RUN bash -c "cd /Retro68-build && bash /Retro68/build-toolchain.bash --clean-after-build"