14 lines
No EOL
272 B
Docker
14 lines
No EOL
272 B
Docker
FROM ubuntu:latest
|
|
LABEL maintainer="Alpha"
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y wget mono-runtime libsqlite3-dev screen && \
|
|
mkdir /mfbot
|
|
|
|
COPY dockerrun.sh /
|
|
COPY download.sh /
|
|
|
|
RUN chmod a+x /dockerrun.sh
|
|
RUN chmod a+x /download.sh
|
|
|
|
ENTRYPOINT ["/dockerrun.sh] |