Skip to content

Commit

Permalink
fix docker armv7
Browse files Browse the repository at this point in the history
  • Loading branch information
axu2 authored Sep 29, 2024
1 parent 550bf4a commit 34fc031
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile-base
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,9 @@ ENV LC_ALL=C.UTF-8 \

SHELL ["/bin/bash", "-o", "pipefail", "-c"]

COPY requirements.txt /opt/kcc/
ENV PATH="/opt/venv/bin:$PATH"

RUN set -x && \
TEMP_PACKAGES=() && \
KEPT_PACKAGES=() && \
Expand Down Expand Up @@ -122,9 +125,8 @@ RUN set -x && \
&& \
# Install required python modules
python -m pip install --upgrade pip && \
# python -m pip install -r /opt/kcc/requirements.txt && \
python -m venv /opt/venv && \
python -m pip install --upgrade pillow python-slugify psutil raven mozjpeg-lossless-optimization
python -m pip install -r /opt/kcc/requirements.txt


######################################################################################
Expand Down

0 comments on commit 34fc031

Please sign in to comment.