mirror of
https://github.com/eduardogsilva/wireguard_webadmin.git
synced 2026-02-19 11:16:18 +00:00
13 lines
290 B
Plaintext
13 lines
290 B
Plaintext
FROM ubuntu:latest
|
|
|
|
RUN apt-get update && apt-get install -y cron curl && rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
COPY cron_runner.sh /cron_runner.sh
|
|
RUN chmod +x /entrypoint.sh
|
|
RUN chmod +x /cron_runner.sh
|
|
|
|
RUN touch /var/log/cron.log
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|