CI
All checks were successful
/ buildx (push) Successful in 7m37s

This commit is contained in:
Stefan Saraev 2025-03-23 14:30:28 +02:00
parent 4e0426fb51
commit 55dc434919
5 changed files with 55 additions and 23 deletions

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
FROM debian:bookworm-slim
WORKDIR /work
ADD . /work
RUN apt-get update && apt-get -y install build-essential debhelper
RUN make debian-package
FROM debian:bookworm-slim
COPY --from=0 tellusagent_*.deb /
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get install -y ./tellusagent_*.deb && rm ./tellusagent_*.deb
ENTRYPOINT ["/opt/TellusAgent/tellusagent"]