Skip to content

Commit

Permalink
add git to dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
beasteers committed Oct 9, 2024
1 parent 94a9b0b commit d6dabee
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ FROM python:3.9-slim

WORKDIR /src/app

RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*

ADD requirements.txt .
RUN pip install -r requirements.txt
ADD . .
Expand Down

0 comments on commit d6dabee

Please sign in to comment.