This commit is contained in:
Vincent Batts 2019-01-16 16:19:18 -05:00
parent 3125c7ac15
commit 5bd5e916f9
Signed by: vbatts
GPG Key ID: 10937E57733F1362
3 changed files with 11 additions and 0 deletions

6
Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM scratch
LABEL "org.opencontainers.image.authors"="Vincent Batts <vbatts@hashbangbash.com>"
LABEL "org.opencontainers.image.url"="https://github.com/vbatts/ohman"
LABEL "org.opencontainers.image.licenses"="MIT"
COPY ohman /ohman
ENTRYPOINT ["/ohman"]

BIN
ohman Executable file

Binary file not shown.

5
ohman.c Normal file
View File

@ -0,0 +1,5 @@
#include <stdio.h>
int main() {
printf("OHMAN\n");
}