Skip to content

Commit

Permalink
fix: remove duplicate mypy (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
wuwentao authored Jun 25, 2024
1 parent 456c9ec commit 79a1c06
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ ARG VARIANT
ARG NODE_VERSION="none"
RUN if [ "${NODE_VERSION}" != "none" ]; then su vscode -c "umask 0002 && . /usr/local/share/nvm/nvm.sh && nvm install ${NODE_VERSION} 2>&1"; fi

# Uninstall pre-installed tools
# They would conflict with our requirements.txt
RUN pipx uninstall mypy

# [Optional] If your pip requirements rarely change, uncomment this section to add them to the image.
COPY requirements*.txt /tmp/pip-tmp/
RUN pip3 --disable-pip-version-check --no-cache-dir install -r /tmp/pip-tmp/requirements-all-${VARIANT}.txt \
Expand Down

0 comments on commit 79a1c06

Please sign in to comment.