diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..0c0a136 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +# Pull in the layer of the base image: alpine:3.20 +FROM alpine:3.20 + +# Copy binary demo to the folder `/bin/` +COPY demo /bin/demo + +# Run the service demo when a container is launched +CMD ["/bin/demo"] \ No newline at end of file