mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-28 18:02:38 +02:00
dev_scripts: Add missing git dependency
Add missing git dependency, which is required to run the `isort` command on the development environment.
This commit is contained in:
parent
e137976581
commit
12eda5d73c
1 changed files with 2 additions and 2 deletions
|
@ -89,7 +89,7 @@ RUN apt-get update \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
RUN apt-get update \
|
RUN apt-get update \
|
||||||
&& apt-get install -y --no-install-recommends dh-python make build-essential \
|
&& apt-get install -y --no-install-recommends dh-python make build-essential \
|
||||||
fakeroot {qt_deps} pipx python3 python3-dev python3-venv python3-stdeb \
|
git fakeroot {qt_deps} pipx python3 python3-dev python3-venv python3-stdeb \
|
||||||
python3-all \
|
python3-all \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
# NOTE: `pipx install poetry` fails on Ubuntu Focal, when installed through APT. By
|
# NOTE: `pipx install poetry` fails on Ubuntu Focal, when installed through APT. By
|
||||||
|
@ -108,7 +108,7 @@ RUN apt-get update \
|
||||||
|
|
||||||
# FIXME: Install Poetry on Fedora via package manager.
|
# FIXME: Install Poetry on Fedora via package manager.
|
||||||
DOCKERFILE_BUILD_DEV_FEDORA_DEPS = r"""
|
DOCKERFILE_BUILD_DEV_FEDORA_DEPS = r"""
|
||||||
RUN dnf install -y rpm-build podman python3 python3-devel python3-poetry-core \
|
RUN dnf install -y git rpm-build podman python3 python3-devel python3-poetry-core \
|
||||||
pipx make qt6-qtbase-gui \
|
pipx make qt6-qtbase-gui \
|
||||||
&& dnf clean all
|
&& dnf clean all
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue