owntracks recorder
This commit is contained in:
35
ot-recorder/Dockerfile
Normal file
35
ot-recorder/Dockerfile
Normal file
@@ -0,0 +1,35 @@
|
||||
ARG BUILD_FROM
|
||||
FROM $BUILD_FROM AS builder
|
||||
|
||||
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.7.9.tar.gz -O - | tar xvzC /tmp
|
||||
|
||||
COPY config.mk /tmp/recorder-0.7.9/
|
||||
|
||||
RUN cd /tmp/recorder-0.7.9/ && \
|
||||
make
|
||||
|
||||
|
||||
ARG BUILD_FROM
|
||||
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
|
||||
|
||||
VOLUME /owntracks
|
||||
EXPOSE 8083
|
||||
|
||||
COPY --from=builder /tmp/recorder-0.7.9/ocat /usr/sbin/
|
||||
COPY --from=builder /tmp/recorder-0.7.9/ot-recorder /usr/sbin/
|
||||
COPY --from=builder /tmp/recorder-0.7.9/docroot /var/spool/owntracks/recorder/htdocs
|
||||
COPY run.sh /
|
||||
RUN chmod a+x /run.sh
|
||||
|
||||
CMD [ "/run.sh" ]
|
||||
Reference in New Issue
Block a user