Skip to content

Commit

Permalink
fix: docker-compose up ModuleNotFoundError: {...} superset
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Dec 10, 2024
1 parent 852e9ae commit 9095482
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ RUN if [ "$BUILD_TRANSLATIONS" = "true" ]; then \
# Transition to Python base image
FROM python:${PY_VER} AS python-base
RUN pip install --no-cache-dir --upgrade setuptools pip uv
RUN uv venv

######################################################################
# Final lean image...
Expand Down
4 changes: 2 additions & 2 deletions docker/pip-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ fi
# Choose whether to use pip cache
if $USE_CACHE; then
echo "Using pip cache..."
uv pip install --system "${ARGS[@]}"
uv pip install "${ARGS[@]}"
else
echo "Disabling pip cache..."
uv pip install --system --no-cache-dir "${ARGS[@]}"
uv pip install --no-cache-dir "${ARGS[@]}"
fi

# Remove build-essential if it was installed
Expand Down

0 comments on commit 9095482

Please sign in to comment.