Compare commits

..

1 Commits

View File

@ -28,15 +28,15 @@ RUN \
\ \
&& curl -Lso /usr/bin/cosign "https://github.com/home-assistant/cosign/releases/download/${COSIGN_VERSION}/cosign_${BUILD_ARCH}" \ && curl -Lso /usr/bin/cosign "https://github.com/home-assistant/cosign/releases/download/${COSIGN_VERSION}/cosign_${BUILD_ARCH}" \
&& chmod a+x /usr/bin/cosign \ && chmod a+x /usr/bin/cosign \
&& pip3 install uv==0.6.1 && pip3 install uv==0.2.21
# Install requirements # Install requirements
COPY requirements.txt . COPY requirements.txt .
RUN \ RUN \
if [ "${BUILD_ARCH}" = "i386" ]; then \ if [ "${BUILD_ARCH}" = "i386" ]; then \
linux32 uv pip install --compile-bytecode --no-build -r requirements.txt; \ linux32 uv pip install --no-build -r requirements.txt; \
else \ else \
uv pip install --compile-bytecode --no-build -r requirements.txt; \ uv pip install --no-build -r requirements.txt; \
fi \ fi \
&& rm -f requirements.txt && rm -f requirements.txt