OHMAN
This commit is contained in:
parent
3125c7ac15
commit
5bd5e916f9
3 changed files with 11 additions and 0 deletions
6
Dockerfile
Normal file
6
Dockerfile
Normal 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
BIN
ohman
Executable file
Binary file not shown.
5
ohman.c
Normal file
5
ohman.c
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
printf("OHMAN\n");
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue