Created
October 30, 2024 13:02
-
-
Save ZiTAL/6f05b759987ac3d7cb6275abd3b2bf28 to your computer and use it in GitHub Desktop.
wolfi / alpine: use git clone in Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM cgr.dev/chainguard/wolfi-base | |
# FROM docker.io/library/alpine:3.20 | |
RUN apk update && apk add git | |
RUN cd /tmp && \ | |
git config --global http.postBuffer 524288000 && \ | |
git config --global http.maxRequestBuffer 524288000 && \ | |
git config --global core.compression 0 && \ | |
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/MobileFrontend |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hametik lortute: https://stackoverflow.com/a/66060728/454827