Netweak-Agent-Docker/Dockerfile

18 lines
526 B
Docker
Raw Permalink Normal View History

2024-05-17 20:49:36 -04:00
# Use Debain 12 as the Base
2024-05-17 05:07:59 -04:00
FROM debian:12-slim
2024-05-17 20:49:36 -04:00
# Run as root
2024-05-17 05:07:59 -04:00
USER root
2024-05-17 20:49:36 -04:00
# Start Cron
2024-05-17 05:07:59 -04:00
ENTRYPOINT cron start && tail -f /var/log/cron.log
# Install nessesary packages
RUN apt-get update && apt-get -y install libcurl4-openssl-dev g++ ca-certificates curl gnupg procps iputils-ping wget net-tools iproute2
# Cron
RUN apt-get -y install -qq --force-yes cron
RUN touch /var/log/cron.log
2024-05-17 20:49:36 -04:00
# The server admin(you) is expected to use "volume" configuration to override the Token
2024-05-17 05:07:59 -04:00
RUN curl -sSL netweak.sh | bash -s TOKEN_REPLACEMENT