2018-01-20 02:08:14 +00:00
|
|
|
FROM alpine:latest
|
|
|
|
|
|
|
|
LABEL description="This is a cc65 Docker container intended to be used for build pipelines."
|
|
|
|
|
2018-01-20 19:30:29 +00:00
|
|
|
ENV BUILD_DIR="/tmp" \
|
|
|
|
CC65_VERSION="V2.16" \
|
|
|
|
NULIB2_VERSION="v3.1.0" \
|
|
|
|
AC_VERSION="1.3.5.14"
|
|
|
|
|
|
|
|
COPY bin /usr/local/bin
|
2018-01-20 02:08:14 +00:00
|
|
|
|
|
|
|
RUN apk add --no-cache build-base && \
|
2018-01-20 19:30:29 +00:00
|
|
|
echo "Building CC65 ${CC65_VERSION}" && \
|
|
|
|
cd ${BUILD_DIR} && \
|
|
|
|
wget https://github.com/cc65/cc65/archive/${CC65_VERSION}.tar.gz && \
|
|
|
|
tar xzf ${CC65_VERSION}.tar.gz && \
|
2018-01-20 02:08:14 +00:00
|
|
|
cd cc65* && \
|
2018-01-20 04:53:02 +00:00
|
|
|
env prefix=/usr/local make && \
|
2018-01-20 02:08:14 +00:00
|
|
|
env prefix=/usr/local make install && \
|
2018-01-20 19:30:29 +00:00
|
|
|
echo "Building NuLib2 ${NULIB2_VERSION}" && \
|
|
|
|
cd ${BUILD_DIR} && \
|
|
|
|
wget https://github.com/fadden/nulib2/archive/${NULIB2_VERSION}.tar.gz && \
|
|
|
|
tar xzf ${NULIB2_VERSION}.tar.gz && \
|
|
|
|
cd nulib2* && \
|
|
|
|
cd nufxlib && \
|
|
|
|
./configure && \
|
|
|
|
make && \
|
|
|
|
make install && \
|
|
|
|
cd ../nulib2 && \
|
|
|
|
./configure && \
|
|
|
|
make && \
|
|
|
|
make install && \
|
|
|
|
echo "Adding AppleCommander" && \
|
|
|
|
wget https://sites.google.com/site/drjohnbmatthews/applecommander/AppleCommander-${AC_VERSION}-ac.jar && \
|
|
|
|
mkdir -p /usr/local/share/java && \
|
|
|
|
mv AppleCommander-${AC_VERSION}-ac.jar /usr/local/share/java/AppleCommander-ac.jar && \
|
|
|
|
echo "Cleaning up" && \
|
|
|
|
cd ${BUILD_DIR} && \
|
|
|
|
rm -rf * && \
|
2018-01-20 02:08:14 +00:00
|
|
|
apk del --no-cache build-base && \
|
2018-01-20 19:30:29 +00:00
|
|
|
echo "Adding other required build-tools exclusive of other C compilers!" && \
|
|
|
|
apk add --no-cache make openjdk8-jre && \
|
|
|
|
chmod +x /usr/local/bin/*
|