Skip to content

Commit

Permalink
Install container dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
saadmk11 committed Jul 12, 2022
1 parent 9e337a7 commit bd06a58
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,15 @@ LABEL "repository"="https://github.com/saadmk11/changelog-ci"
LABEL "homepage"="https://github.com/saadmk11/changelog-ci"
LABEL "maintainer"="saadmk11"

RUN apt-get update \
&& apt-get install \
-y \
--no-install-recommends \
--no-install-suggests \
git \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

COPY ./requirements.txt .

RUN pip install -r requirements.txt
Expand Down

0 comments on commit bd06a58

Please sign in to comment.