A container to build stuff inside an Alpine Linux container
616
I love it to compile stuff without juggling with SConstruct or Makefiles.
docker run --rm -it -v $PWD:/src -w="/src" aliem/gcc /bin/ash -c "./configure && make"
And ...
FROM alpine:3.3
ADD ./src/command /
CMD ["/command"]
Content type
Image
Digest
Size
61.3 MB
Last updated
over 8 years ago
docker pull aliem/gcc