aboutsummaryrefslogtreecommitdiff
path: root/unifi/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'unifi/Dockerfile')
-rw-r--r--unifi/Dockerfile8
1 files changed, 6 insertions, 2 deletions
diff --git a/unifi/Dockerfile b/unifi/Dockerfile
index acb471f..a04d001 100644
--- a/unifi/Dockerfile
+++ b/unifi/Dockerfile
@@ -1,6 +1,8 @@
1FROM alpine:edge 1FROM alpine:edge
2LABEL maintainer="Mike Crute <mike@crute.us>" 2LABEL maintainer="Mike Crute <mike@crute.us>"
3 3
4# TODO: Move all the unpacking stuff to the Makefile
5
4ARG deb_location 6ARG deb_location
5ARG checksum_line 7ARG checksum_line
6 8
@@ -55,7 +57,9 @@ RUN set -euxo pipefail; \
55 && apk del .build-deps \ 57 && apk del .build-deps \
56 && rm -rf /tmp/* 58 && rm -rf /tmp/*
57 59
58ADD entrypoint.sh / 60ADD unifi-setup.sh /
61ADD simplevisor.json /
62ADD simplevisor /
59 63
60STOPSIGNAL SIGTERM 64STOPSIGNAL SIGTERM
61ENTRYPOINT [ "/entrypoint.sh" ] 65ENTRYPOINT [ "/simplevisor" ]