Build multiple archs Trying to enable experimental server mode And again And Again And again..... ... and again More Trying with qemu Trying with multiple dockerfiles More This should work Gah Trying to get sed to work Should work on Linux now Tidying up build script
22 lines
478 B
Docker
22 lines
478 B
Docker
FROM __BASEIMAGE_ARCH__/debian:stretch-slim
|
|
__CROSS_COPY qemu-__QEMU_ARCH__-static /usr/bin/
|
|
|
|
MAINTAINER Adam Harrison-Fuller <adam@adamhf.io>
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y mumble-server && \
|
|
rm -rf \
|
|
/var/cache/apt/* \
|
|
/var/lib/apt/lists/*
|
|
|
|
EXPOSE 64738 64738/udp
|
|
|
|
ADD ./data/mumble_server.ini /config/
|
|
VOLUME /data
|
|
ENV MUMBLE_INI /config/mumble_server.ini
|
|
|
|
ADD entrypoint.sh /
|
|
RUN chmod +x entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
CMD ["-fg"] |