mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-22 04:30:03 +00:00
0649693436
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.
16 lines
371 B
Docker
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"
|