5 lines
181 B
Docker
5 lines
181 B
Docker
FROM alpine
|
|
RUN apk add --no-cache git py3-pip bash openssh && pip install --break-system-packages python-gitlab
|
|
COPY all_repos.py update.sh prep.sh /root/
|
|
ENTRYPOINT /root/prep.sh
|