innernet-playbook/Dockerfile
linus 926835c2d5 change the way in which the .deb packages are built
The build environment must be based on bullseye. This is achieved by
using a docker container to build the .deb packages
2021-12-02 17:42:02 +01:00

8 lines
164 B
Docker

FROM rust:slim-bullseye
RUN cargo install cargo-deb
RUN apt-get update
RUN apt-get install -y libsqlite3-dev libclang-dev
RUN mkdir -p /innernet
WORKDIR /innernet