Added a multi-stage Dockerfile for easier local image builds

This commit is contained in:
Geoff Bourne
2021-12-04 18:31:18 -06:00
parent 1b1f8e5f22
commit ca55bde751
5 changed files with 30 additions and 11 deletions
+8
View File
@@ -0,0 +1,8 @@
FROM scratch
LABEL org.opencontainers.image.authors="Geoff Bourne <itzgeoff@gmail.com>"
LABEL org.opencontainers.image.title="mc-router"
LABEL org.opencontainers.image.source="https://github.com/itzg/mc-router"
COPY mc-router /
ENTRYPOINT ["/mc-router"]