Skip to content

Commit

Permalink
Do apt update before upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
herostrat authored and blakeblackshear committed Jun 19, 2021
1 parent d83ffd8 commit 9b3a649
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docker/Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ RUN groupadd --gid $USER_GID $USERNAME \
&& echo $USERNAME ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/$USERNAME \
&& chmod 0440 /etc/sudoers.d/$USERNAME

RUN apt-get install -y git curl vim htop
RUN apt-get update \
&& apt-get install -y git curl vim htop

RUN pip3 install pylint black

Expand Down

0 comments on commit 9b3a649

Please sign in to comment.