14 lines
262 B
Docker
14 lines
262 B
Docker
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"]
|