2021-09-14 14:46:57 +00:00
|
|
|
ARG BUILD_FROM=ghcr.io/hassio-addons/base/amd64:10.0.2
|
2021-09-14 15:25:54 +00:00
|
|
|
FROM alpine:3.14 AS builder
|
2021-09-14 14:46:57 +00:00
|
|
|
|
|
|
|
ENV LANG C.UTF-8
|
|
|
|
|
|
|
|
RUN apk add --no-cache \
|
|
|
|
abuild linux-headers musl-dev mosquitto-dev \
|
|
|
|
lmdb-dev curl-dev libconfig-dev gcc make libsodium-dev && \
|
|
|
|
wget -q https://github.com/owntracks/recorder/archive/0.8.7.tar.gz -O - | tar xvzC /tmp
|
|
|
|
|
|
|
|
COPY config.mk /tmp/recorder-0.8.7/
|
|
|
|
|
|
|
|
RUN cd /tmp/recorder-0.8.7/ && \
|
|
|
|
make
|
|
|
|
|
|
|
|
FROM $BUILD_FROM
|
|
|
|
|
|
|
|
ENV LANG C.UTF-8
|
|
|
|
|
|
|
|
RUN apk -U --no-cache upgrade && \
|
|
|
|
apk --no-cache add jq && \
|
|
|
|
apk --no-cache add libcurl lmdb libconfig libsodium mosquitto-libs
|
|
|
|
|
|
|
|
EXPOSE 8083
|
|
|
|
|
|
|
|
COPY --from=builder /tmp/recorder-0.8.7/ocat /usr/sbin/
|
|
|
|
COPY --from=builder /tmp/recorder-0.8.7/ot-recorder /usr/sbin/
|
|
|
|
COPY --from=builder /tmp/recorder-0.8.7/docroot /var/spool/owntracks/recorder/htdocs
|
|
|
|
COPY run.sh /
|
|
|
|
RUN chmod a+x /run.sh
|
|
|
|
|
|
|
|
CMD [ "/run.sh" ]
|