diff options
Diffstat (limited to 'podman')
-rw-r--r-- | podman/arch-testenv | 4 | ||||
-rw-r--r-- | podman/debian-testenv | 2 | ||||
-rw-r--r-- | podman/fedora-testenv | 2 | ||||
-rw-r--r-- | podman/ubuntu-testenv | 4 |
4 files changed, 6 insertions, 6 deletions
diff --git a/podman/arch-testenv b/podman/arch-testenv index 11b3087..3d75cc9 100644 --- a/podman/arch-testenv +++ b/podman/arch-testenv @@ -3,8 +3,8 @@ FROM docker.io/archlinux:latest MAINTAINER gerbolyze@jaseg.de RUN pacman --noconfirm -Syu RUN pacman --noconfirm -Sy pugixml opencv pango cairo git python make clang rustup cargo python-pip base-devel gerbv rsync -RUN python3 -m pip install pytest-parallel +RUN python3 -m pip install pytest-parallel setuptools wasmtime RUN rustup install stable RUN rustup default stable -RUN cargo install usvg resvg +RUN cargo install resvg RUN python3 -m pip install --upgrade gerbonara diff --git a/podman/debian-testenv b/podman/debian-testenv index 544b3f2..f01b887 100644 --- a/podman/debian-testenv +++ b/podman/debian-testenv @@ -7,5 +7,5 @@ RUN env DEBIAN_FRONTEND=noninteractive apt install -y libopencv-dev libpugixml-d RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y RUN sh -c '. ~/.cargo/env && rustup install stable' RUN sh -c '. ~/.cargo/env && rustup default stable' -RUN sh -c '. ~/.cargo/env && cargo install usvg' +RUN sh -c '. ~/.cargo/env && cargo install resvg' diff --git a/podman/fedora-testenv b/podman/fedora-testenv index c37de87..1ecec06 100644 --- a/podman/fedora-testenv +++ b/podman/fedora-testenv @@ -3,5 +3,5 @@ FROM docker.io/fedora:latest MAINTAINER gerbolyze@jaseg.de RUN dnf update --refresh -y RUN dnf install -y python3 make clang opencv-devel pugixml-devel pango-devel cairo-devel rust cargo -RUN cargo install usvg +RUN cargo install resvg diff --git a/podman/ubuntu-testenv b/podman/ubuntu-testenv index 6f38dbb..2e9dc57 100644 --- a/podman/ubuntu-testenv +++ b/podman/ubuntu-testenv @@ -3,6 +3,6 @@ FROM docker.io/ubuntu:latest MAINTAINER gerbolyze@jaseg.de RUN env DEBIAN_FRONTEND=noninteractive apt update -y RUN env DEBIAN_FRONTEND=noninteractive apt install -y libopencv-dev libpugixml-dev libpangocairo-1.0-0 libpango1.0-dev libcairo2-dev clang make python3 git python3-wheel curl python3-pip python3-venv cargo rsync gerbv -RUN cargo install usvg resvg -RUN python3 -m pip install numpy slugify lxml click pillow scipy sphinx pytest beautifulsoup4 pytest-parallel +RUN cargo install resvg +RUN python3 -m pip install numpy slugify lxml click pillow scipy sphinx pytest beautifulsoup4 pytest-parallel wasmtime RUN python3 -m pip install --upgrade gerbonara |