Skip to content

Commit

Permalink
don't install recommended packages in dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
mshannon-sil committed Jul 5, 2023
1 parent 4adec17 commit fd37b2d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ WORKDIR /root
# Install apt packages
RUN apt-get update
RUN apt-get upgrade -y
RUN apt-get install -y \
RUN apt-get install --no-install-recommends -y \
git \
python$PYTHON_VERSION \
python3-pip \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ WORKDIR /root
# Install apt packages
RUN apt-get update
RUN apt-get upgrade -y
RUN apt-get install -y \
RUN apt-get install --no-install-recommends -y \
git \
python$PYTHON_VERSION \
python3-pip \
Expand Down

0 comments on commit fd37b2d

Please sign in to comment.