Skip to content

Commit

Permalink
FIX: Add dependencies to enable proper git usage in image
Browse files Browse the repository at this point in the history
  • Loading branch information
woile committed Jan 14, 2025
1 parent 32a2c07 commit 2773ea8
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,17 @@ LABEL org.label-schema.description="KPN'S COMMITIZEN"
LABEL org.opencontainers.image.source="https://github.com/kpn/cz-kpn"
WORKDIR /app

RUN apk add --update -t --no-cache git curl alpine-sdk bash
RUN set -eux; \
apk add --no-cache \
git \
git-lfs \
gpg \
alpine-sdk \
bash \
libffi-dev \
; \
git lfs install;


RUN ["pip", "install", "-U", "--no-cache-dir", "pip"]
RUN ["pip", "install", "-U", "--no-cache-dir", "cz-kpn==3.2.11"]
Expand Down

0 comments on commit 2773ea8

Please sign in to comment.