1
0
Fork 0
commitizen-action/Dockerfile

15 lines
262 B
Text
Raw Permalink Normal View History

FROM python:3.10-alpine
RUN set -eux; \
apk add --no-cache \
git \
git-lfs \
gpg \
alpine-sdk \
bash \
libffi-dev \
; \
git lfs install;
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]