This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Build the $MODULE target (which produces a $MODULE binary) | |
FROM debian:latest as builder | |
ARG MODULE | |
COPY src/ . | |
RUN make ${MODULE} | |
# Build a minimal image containing the $MODULE binary | |
FROM alpine:latest as product |