blob: a79452d006b82e459bc4a09e59144edbf545e206 (
plain)
1
2
3
4
5
6
7
8
|
ARG GIT_SNAPSHOT=0.0.2
ARG BASE_VER=latest
FROM public.ecr.aws/x2w2w0z4/base:${BASE_VER}
ARG GIT_SNAPSHOT
SHELL ["/bin/bash", "-c"]
RUN install_deb python3-minimal python3-pip python3-setuptools python3-wheel git \
&& pip3 install https://git.ofmax.li/git-snapshot/snapshot/git-snapshot-${GIT_SNAPSHOT}.tar.gz
WORKDIR "/var/lib/git"
|