mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-28 18:02:38 +02:00
Do not run uv sync directly in the Dockerfile
This commit is contained in:
parent
9169246924
commit
572d9e3f61
1 changed files with 2 additions and 1 deletions
|
@ -182,7 +182,8 @@ ENV PATH="$PATH:/home/user/.local/bin"
|
||||||
RUN pipx install uv
|
RUN pipx install uv
|
||||||
|
|
||||||
COPY pyproject.toml uv.lock /home/user/dangerzone/
|
COPY pyproject.toml uv.lock /home/user/dangerzone/
|
||||||
RUN cd /home/user/dangerzone && uv sync
|
# XXX Not sure why, but permission problems with the command below. Commenting it out for now as `uv` will get the deps later on.
|
||||||
|
# RUN cd /home/user/dangerzone && uv venv .venv-{distro}-{version} && uv sync
|
||||||
"""
|
"""
|
||||||
|
|
||||||
DOCKERFILE_BUILD_DEBIAN_DEPS = r"""
|
DOCKERFILE_BUILD_DEBIAN_DEPS = r"""
|
||||||
|
|
Loading…
Reference in a new issue