cronrunner 2.2.0

Run cron jobs manually.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM ubuntu:20.04

RUN apt-get update && apt-get upgrade -y

RUN apt-get install -y \
    build-essential \
    curl

# Update new packages
RUN apt-get update

# Get Rust
RUN curl curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | bash -s -- -y

ENV PATH="/root/.cargo/bin:${PATH}"