mirror of
https://framagit.org/ppom/reaction
synced 2026-03-14 12:45:47 +01:00
- cross-rs project doesn't compile anymore: switching to debian12-amd64 only binary release - package virtual plugin in reaction .deb - package ipset plugin in separate .deb with its required libipset-dev dependency
11 lines
266 B
Docker
11 lines
266 B
Docker
# This Dockerfile permits to build reaction and its plugins
|
|
|
|
# Use debian old-stable, so that it runs on both old-stable and stable
|
|
FROM rust:bookworm
|
|
|
|
RUN apt update && apt install -y \
|
|
clang \
|
|
libipset-dev \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /reaction
|