Skip to content
This repository has been archived by the owner on Jul 25, 2024. It is now read-only.

Commit

Permalink
add git dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
gidsg committed Feb 6, 2024
1 parent 816ebde commit e0a2f19
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.11-slim-bullseye
ARG REQUIREMENTS=requirements.txt
WORKDIR /app
COPY ${REQUIREMENTS} ${REQUIREMENTS}
RUN apt-get update
RUN apt-get install -y git
RUN python3 -m pip install --upgrade pip && pip install -r ${REQUIREMENTS}

COPY . .
Expand Down

0 comments on commit e0a2f19

Please sign in to comment.