34 lines
830 B
Docker
34 lines
830 B
Docker
# NAME leenooks/mysticbbs
|
|
# VERSION 1.12a39
|
|
|
|
FROM debian:stretch-slim
|
|
|
|
MAINTAINER Deon George <deon@leenooks.net>
|
|
|
|
# Pre-requisites
|
|
# + Base application requires unzip zip curl libhunspell-dev libpython2.7
|
|
RUN apt-get update \
|
|
&& apt-get install -yqq unzip zip curl libhunspell-dev libpython2.7 \
|
|
&& rm -rf /var/lib/apt/lists/* /tmp/*
|
|
|
|
# Add in Leenooks' apt repository
|
|
RUN curl -s http://apt.leenooks.net/setup.sh | sh # Updated URL
|
|
|
|
# For SSH connections and Spell
|
|
RUN apt-get update \
|
|
&& apt-get install --allow-unauthenticated -yqq cryptlib \
|
|
&& rm -rf /var/lib/apt/lists/* /tmp/*
|
|
|
|
RUN ln -sf /usr/share/zoneinfo/Australia/Melbourne /etc/localtime
|
|
|
|
WORKDIR /mystic
|
|
ENV mysticbbs /mystic/data
|
|
EXPOSE 22 23 24554
|
|
|
|
COPY init /sbin/init
|
|
ENTRYPOINT [ "/sbin/init" ]
|
|
CMD [ "start" ]
|
|
|
|
ADD mystic.tar.gz /
|
|
VOLUME ["/mystic/data"]
|