Skip to content

Commit

Permalink
Consolidate consecutive RUN instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
sajith committed Mar 28, 2023
1 parent 9d2d7ae commit 01f7bc0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ RUN apt-get update \
&& apt-get -y upgrade \
&& apt-get install -y --no-install-recommends gcc python3-dev git && \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
&& rm -rf /var/lib/apt/lists/* \
&& mkdir -p /usr/src/app

RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app

COPY requirements.txt /usr/src/app/
Expand Down

0 comments on commit 01f7bc0

Please sign in to comment.