FROM alpine:3.22.2

# Set the working directory
WORKDIR /usr/bin

# Copy the binary to the working directory
COPY squealer /usr/bin/squealer

# Set the default entrypoint
ENTRYPOINT [ "squealer" ]