aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorPaul Duncan <pabs@pablotron.org>2024-07-24 22:39:59 -0400
committerPaul Duncan <pabs@pablotron.org>2024-07-24 22:39:59 -0400
commitb328a92f0e3c648bad7ef47a98f1db75e545789a (patch)
treeed6d37508d13cf3296f8ad57dc7214b0697e979d /Dockerfile
downloadalonzo-sucks-arm64-b328a92f0e3c648bad7ef47a98f1db75e545789a.tar.bz2
alonzo-sucks-arm64-b328a92f0e3c648bad7ef47a98f1db75e545789a.zip
initial commitHEADmain
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile15
1 files changed, 15 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..1c6845e
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,15 @@
+# build image: latest alpine plus the following packages:
+# - binutils: for as and ld
+# - make: for gnu make
+FROM docker.io/alpine:latest AS build
+COPY . /src
+WORKDIR /src
+RUN apk add binutils make && \
+ make && \
+ wc -c ./hi
+
+# output image which contains a single 384 byte statically-linked arm64
+# binary named "/hi"
+FROM scratch
+COPY --from=build /src/hi /hi
+CMD ["/hi"]