Skip to content

Commit

Permalink
update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
TychoTheTaco committed Oct 19, 2023
1 parent f53e2c0 commit 240ca24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bot/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ RUN apt-get update \

# Install build dependencies and requirements
RUN apt-get update \
&& apt-get install -y --no-install-recommends gcc \
&& apt-get install -y --no-install-recommends gcc libc-dev \
&& rm -rf /var/lib/apt/lists/* \
&& pip install -r requirements.txt \
&& apt-get purge -y --auto-remove gcc
&& apt-get purge -y --auto-remove gcc libc-dev

# Install app
RUN pip install .
Expand Down

0 comments on commit 240ca24

Please sign in to comment.