mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
27cd1d0e36
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
51 lines
1.3 KiB
Docker
51 lines
1.3 KiB
Docker
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"]
|