docker-git-puller/Dockerfile

13 lines
234 B
Docker
Raw Normal View History

2024-09-21 21:33:47 +00:00
FROM alpine
LABEL org.opencontainers.image.authors="bluefox@privacynerd.de"
WORKDIR /
COPY docker-entrypoint.sh /docker-entrypoint.sh
2024-09-21 21:33:47 +00:00
RUN apk update --no-cache && \
apk add --no-cache git
2024-09-21 21:33:47 +00:00
ENTRYPOINT ["/docker-entrypoint.sh"]