dockerfiles/unifi/Dockerfile
Jess Frazelle 27cd1d0e36
add unifi
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
2017-11-30 10:59:40 -05:00

51 lines
1.3 KiB
Docker
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

FROM ubuntu:16.04
# environment settings
ENV DEBIAN_FRONTEND="noninteractive"
# install deps
RUN apt-get update && apt-get install -y \
ca-certificates \
dirmngr \
gnupg \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
# add mongo repo
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 0C49F3730359A14518585931BC711F9BA15703C6 \
&& echo "deb [ arch=amd64,arm64 ] http://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/3.4 multiverse" >> /etc/apt/sources.list.d/mongo.list
# install packages
RUN apt-get update && apt-get install -y \
binutils \
jsvc \
mongodb-org-server \
openjdk-8-jre-headless \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
# unifi version
# From: https://www.ubnt.com/download/unifi/
ENV UNIFI_VERSION "5.6.22"
# install unifi
RUN buildDeps=' \
curl \
' \
set -x \
&& apt-get update && apt-get install -y \
$buildDeps \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/* \
&& curl -o /tmp/unifi.deb -L "http://dl.ubnt.com/unifi/${UNIFI_VERSION}/unifi_sysvinit_all.deb" \
&& dpkg -i /tmp/unifi.deb \
&& rm -rf /tmp/unifi.deb \
&& apt-get purge -y $buildDeps \
&& echo "Build complete."
WORKDIR /config
EXPOSE 8080 8081 8443 8843 8880
CMD ["java", "-Xmx1024M", "-jar", "/usr/lib/unifi/lib/ace.jar", "start"]