FROM debian:stable-slim MAINTAINER Wizardry and Steamworks (wizardry.steamworks@outlook.com) # update package manager RUN apt-get update -y && \ apt-get upgrade -y && \ apt-get dist-upgrade -y && \ apt-get -y autoremove && \ apt-get clean # install required tools RUN apt-get install -y \ curl \ jq \ avahi-daemon \ avahi-utils \ avahi-discover # UTF-8 support RUN apt-get install -y coreutils locales && \ sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \ locale-gen && \ dpkg-reconfigure --frontend=noninteractive locales && \ update-locale LANG=en_US.UTF-8 COPY rootfs / RUN chmod +x /usr/local/bin/run ENTRYPOINT [ "/usr/local/bin/run" ]