tellusagent/Dockerfile
Stefan Saraev 55dc434919
All checks were successful
/ buildx (push) Successful in 7m37s
CI
2025-03-23 17:08:27 +02:00

11 lines
352 B
Docker

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"]