We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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"]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Look into extending support to include DOSEMU.
Thanks to this Reddit comment
reference...
The text was updated successfully, but these errors were encountered: