18 lines
No EOL
526 B
Docker
18 lines
No EOL
526 B
Docker
# Use Debain 12 as the Base
|
|
FROM debian:12-slim
|
|
|
|
# Run as root
|
|
USER root
|
|
|
|
# Start Cron
|
|
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
|
|
|
|
# The server admin(you) is expected to use "volume" configuration to override the Token
|
|
RUN curl -sSL netweak.sh | bash -s TOKEN_REPLACEMENT |