Docker container for DFBnc
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Dockerfile 411B

12345678910111213141516171819
  1. FROM ubuntu:xenial
  2. MAINTAINER Chris Smith <chris87@gmail.com>
  3. RUN \
  4. apt-get update && \
  5. apt-get -y install \
  6. curl \
  7. openjdk-8-jre-headless
  8. RUN curl -L -o /DFBnc.jar https://github.com/ShaneMcC/DFBnc/releases/download/0.4/dfbnc.jar
  9. EXPOSE 33262 33263
  10. VOLUME ["/var/lib/dfbnc"]
  11. WORKDIR /var/lib/dfbnc
  12. CMD ["/usr/bin/java", "-jar", "/DFBnc.jar", "--config", "/var/lib/dfbnc", "--foreground"]