mirror of https://github.com/wwarthen/RomWBW.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.6 KiB
46 lines
1.6 KiB
FROM ubuntu:jammy-20240111 AS basebuilder
|
|
|
|
# This docker file can be used to build a tool chain docker image for building RomWBW images.
|
|
|
|
# Tested on a ubuntu host and on Windows un WSL (with docker desktop)
|
|
|
|
# First build the docker image (will b)
|
|
# docker build --progress plain -t romwbw-chain .
|
|
|
|
# After you have built the above image (called romwbw-chain), you can use it to compile and build the RomWBW images
|
|
# as per the standard make scripts within RomWBW.
|
|
# Start a new terminal, cd to where you have clone RomWBW, and then run this command:
|
|
# docker run --rm -v ${PWD}:/src/ --privileged=true -u $(id -u ${USER}):$(id -g ${USER}) -it romwbw-chain
|
|
|
|
# you can now compile and build the required images:
|
|
|
|
# cd Tools && make
|
|
# cd Source && make # at least once to build many common units
|
|
# cd Source && make rom ROM_PLATFORM=RCEZ80 ROM_CONFIG=std
|
|
|
|
# when finish, type 'exit' to return to back to your standard terminal session
|
|
|
|
LABEL Maintainer="Dean Netherton" \
|
|
Description="RomWBW builder platform"
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN dpkg --add-architecture i386
|
|
RUN apt update -y
|
|
RUN apt dist-upgrade -y
|
|
RUN apt install -y --no-install-recommends cmake lzip ca-certificates mtools build-essential dos2unix libboost-all-dev texinfo texi2html libxml2-dev subversion bison flex zlib1g-dev m4 git wget dosfstools curl
|
|
|
|
RUN mkdir work
|
|
WORKDIR /work
|
|
|
|
FROM basebuilder AS main
|
|
|
|
LABEL Maintainer="Dean Netherton" \
|
|
Description="RomWBW builder platform"
|
|
|
|
RUN mkdir /src
|
|
WORKDIR /src/
|
|
|
|
RUN apt install -y --no-install-recommends build-essential libncurses-dev srecord bsdmainutils
|
|
|
|
RUN adduser --disabled-password --gecos "" builder
|
|
|