Reputation: 10109
Looking at the alpine linux docker page, one of the tags points to the dockerfile on github
FROM scratch
ADD alpine-minirootfs-3.12.12-x86_64.tar.gz /
CMD ["/bin/sh"]
Where to find the source for this tar?
Upvotes: 0
Views: 1544
Reputation: 2487
You can download it from Alpine Linux releases
The one the Dockerfile points is here
Upvotes: 1