grim/docker-noop

20ce41264fe7
Parents 1701b53e73fa
Children
Optimize for size (didn't actually change anything in my tests)
  • +1 -1
    Makefile
  • --- a/Makefile Tue Jun 07 14:36:41 2016 -0500
    +++ b/Makefile Tue Jun 07 14:37:24 2016 -0500
    @@ -11,7 +11,7 @@
    nasm -f elf $< -o $@
    noop: noop.o
    - gcc -m32 -Wall -s -nostdlib $< -o $@
    + gcc -Os -m32 -Wall -s -nostdlib $< -o $@
    image: noop
    docker build -t noop .