grim/docker-noop

20ce41264fe7
Optimize for size (didn't actually change anything in my tests)
; noop.asm
BITS 32
GLOBAL _start
SECTION .text
_start:
mov eax, 1 ; exit syscall
mov ebx, 0 ; exit code
int 0x80 ; run syscall