watchdog_utils_II 0.6.0

Library for user management for scout and watchdog
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM ubuntu:24.04

RUN apt-get update && apt-get install -y \
    curl \
    build-essential \
    sudo \
    pkg-config \
    libssl-dev \
    && curl https://sh.rustup.rs -sSf | sh -s -- -y

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

WORKDIR /usr/src/app
COPY . .

RUN cargo build --release