Skip to content

Commit

Permalink
Dockerdev: Improve docker caching layers (home-assistant#85186)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliv3r authored Apr 12, 2023
1 parent 2c8b704 commit 2d1ae66
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]

# Uninstall pre-installed formatting and linting tools
# They would conflict with our pinned versions
RUN pipx uninstall black
RUN pipx uninstall pydocstyle
RUN pipx uninstall pycodestyle
RUN pipx uninstall mypy
RUN pipx uninstall pylint
RUN \
pipx uninstall black \
&& pipx uninstall pydocstyle \
&& pipx uninstall pycodestyle \
&& pipx uninstall mypy \
&& pipx uninstall pylint

RUN \
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - \
Expand Down

0 comments on commit 2d1ae66

Please sign in to comment.