# Set the base image.
FROM alpine:3.21

# Add the HTTP demo server.
COPY ["httpdemo", "/httpdemo"]

# Set the HTTP demo server as the entry point.
ENTRYPOINT ["/httpdemo"]
