Merge pull request #64 from ssalevan/master

Adjusting Dockerfile to support clean builds
This commit is contained in:
Wolfgang Thaller 2018-08-15 20:23:20 +02:00 committed by GitHub
commit fedaf466ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,15 +1,15 @@
# vim:ft=dockerfile
FROM ubuntu:16.04
FROM ubuntu:18.04
RUN apt-get update && apt-get -y install \
g++ \
cmake libgmp-dev libmpfr-dev libmpc-dev libboost-all-dev bison \
zlib1g-dev \
perl texinfo
RUN mkdir /root/Retro68
COPY . /root/Retro68/
RUN mkdir /root/Retro68-build
ADD . /Retro68
RUN sh -c "cd /root/Retro68-build && sh ../Retro68/build-toolchain.sh --clean-after-build"
RUN mkdir /Retro68-build
RUN bash -c "cd /Retro68-build && bash /Retro68/build-toolchain.bash --clean-after-build"