Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DOSEMU Support #15

Open
tracker1 opened this issue Mar 1, 2023 · 0 comments
Open

DOSEMU Support #15

tracker1 opened this issue Mar 1, 2023 · 0 comments

Comments

@tracker1
Copy link
Member

tracker1 commented Mar 1, 2023

Look into extending support to include DOSEMU.

Thanks to this Reddit comment

reference...

FROM bbsio/synchronet:latest

ARG DOSEMU_DEB_URL=http://ftp.us.debian.org/debian/pool/contrib/d/dosemu/dosemu_1.4.0.7+20130105+b028d3f-2+b1_amd64.deb
ARG DOSEMU_DEB=dosemu_1.4.0.7+20130105+b028d3f-2+b1_amd64.deb

RUN apt-get update \
        && apt-get install -y rsh-redone-client locales locales-all \
                mtools dosfstools dos2unix ser2net socat

ENV USER=root LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 LANGUAGE=en_US.UTF-8

# HACK: Install dosemu from .deb URL and allow for initial failure of install before dependencies
RUN wget -nc $DOSEMU_DEB_URL \
        && /usr/bin/dpkg -i $DOSEMU_DEB \
        || /usr/bin/apt-get -f install -y \
        && /usr/bin/dpkg -i $DOSEMU_DEB \
        && rm $DOSEMU_DEB
RUN mkdir -p /media/CDROM

ARG SBBS_SRC=./sbbs
COPY $SBBS_SRC/install/terminfo $SBBS_SRC/install/termcap ./
RUN /usr/bin/tic terminfo \
        && cat termcap >> /etc/termcap \
        && rm terminfo termcap

RUN apt-get install -y tmux

COPY ./start.sh ./
CMD ["./start.sh"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant