radiko-rs 0.2.2

An unofficial Rust library for accessing Japan's radiko radio streaming service
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# GiteaサーバーのActionsで定期実行するのに利用
# apt-get install ffmpegでたまにエラーになってフレーキーテストになるので。
FROM rust:latest

LABEL org.opencontainers.image.source=https://github.com/t9a-dev/radiko-rs

RUN apt-get update && apt-get install -y \
    ffmpeg \
    && rm -rf /var/lib/apt/lists/*

WORKDIR /app

COPY Cargo.toml Cargo.lock ./
COPY src ./src

RUN cargo build

ENTRYPOINT ["cargo", "test"]