Adjusting Dockerfile to support clean builds

This commit is contained in:
Steve Salevan 2018-08-14 22:02:47 -04:00
parent 2dec12faee
commit 921ff11ddb
1 changed files with 6 additions and 6 deletions

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"