mirror of https://github.com/sfeakes/AqualinkD.git
67 lines
2.3 KiB
Docker
Executable File
67 lines
2.3 KiB
Docker
Executable File
#####################################
|
|
#
|
|
# Build container
|
|
# The most basic build for aqualinkd
|
|
#
|
|
# env AQUALINKD_VERSION must be passed to this
|
|
#
|
|
#####################################
|
|
|
|
FROM debian:bookworm AS aqualinkd-build
|
|
|
|
#VOLUME ["/aqualinkd-build"]
|
|
|
|
RUN apt-get update && \
|
|
apt-get -y install curl make gcc libsystemd-dev
|
|
|
|
# Seup working dir
|
|
RUN mkdir /home/AqualinkD
|
|
WORKDIR /home/AqualinkD
|
|
|
|
ARG AQUALINKD_VERSION
|
|
RUN curl -sL "https://github.com/sfeakes/AqualinkD/archive/refs/tags/$AQUALINKD_VERSION.tar.gz" | tar xz --strip-components=1
|
|
# Get latest release
|
|
#RUN curl -sL $(curl -s https://api.github.com/repos/sfeakes/AqualinkD/releases/latest | grep "tarball_url" | cut -d'"' -f4) | tar xz --strip-components=1
|
|
|
|
# Build aqualinkd
|
|
RUN make clean && \
|
|
make container
|
|
|
|
#####################################
|
|
#
|
|
# Runtime container
|
|
#
|
|
#####################################
|
|
|
|
FROM debian:bookworm-slim AS aqualinkd
|
|
|
|
ARG AQUALINKD_VERSION
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y cron curl socat && \
|
|
apt-get clean
|
|
|
|
# Set cron to read local.d
|
|
RUN sed -i '/EXTRA_OPTS=.-l./s/^#//g' /etc/default/cron
|
|
|
|
# Add Open Container Initiative (OCI) annotations.
|
|
# See: https://github.com/opencontainers/image-spec/blob/main/annotations.md
|
|
|
|
LABEL org.opencontainers.image.title="AqualinkD"
|
|
LABEL org.opencontainers.image.url="https://hub.docker.com/repository/docker/sfeakes/aqualinkd/general"
|
|
LABEL org.opencontainers.image.source="https://github.com/sfeakes/AqualinkD"
|
|
LABEL org.opencontainers.image.documentation="https://github.com/sfeakes/AqualinkD"
|
|
LABEL org.opencontainers.image.version=$AQUALINKD_VERSION
|
|
|
|
|
|
COPY --from=aqualinkd-build /home/AqualinkD/release/aqualinkd /usr/local/bin/aqualinkd
|
|
COPY --from=aqualinkd-build /home/AqualinkD/release/serial_logger /usr/local/bin/serial_logger
|
|
COPY --from=aqualinkd-build /home/AqualinkD/web/ /var/www/aqualinkd/
|
|
COPY --from=aqualinkd-build /home/AqualinkD/release/aqualinkd.conf /etc/aqualinkd.conf
|
|
|
|
#COPY --from=aqualinkd-build /home/AqualinkD/docker/aqualinkd-docker.cmd /usr/local/bin/aqualinkd-docker
|
|
RUN curl -s -o /usr/local/bin/aqualinkd-docker https://raw.githubusercontent.com/sfeakes/AqualinkD/master/docker/aqualinkd-docker.cmd && \
|
|
chmod +x /usr/local/bin/aqualinkd-docker
|
|
|
|
CMD ["sh", "-c", "/usr/local/bin/aqualinkd-docker"]
|