Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
jesseklm committed Aug 3, 2024
1 parent 39b0f96 commit dcf804b
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 @@ WORKDIR /usr/src/app

COPY . .

RUN apt-get -y update && apt-get install -y git && \
RUN apt-get -y update && apt-get install -y build-essential git && \
pip install --no-cache-dir --prefer-binary -r requirements.txt && \
apt-get remove -y git && \
apt-get remove -y build-essential git && \
apt-get autoremove -y && \
apt-get clean && rm -rf /var/lib/apt/lists/*

Expand Down

0 comments on commit dcf804b

Please sign in to comment.