24 lines
536 B
Docker
24 lines
536 B
Docker
# Pin to specific Alpine version (checked 2025-10-14: alpine:3.20 is latest stable)
|
|
FROM alpine:3.20
|
|
|
|
# Install C++ compiler and build tools
|
|
RUN apk --no-cache add \
|
|
g++ \
|
|
make \
|
|
wget \
|
|
ca-certificates \
|
|
openssl-dev
|
|
|
|
WORKDIR /app
|
|
|
|
# Download cpp-httplib header-only library (v0.18.3 latest as of 2025-10-14)
|
|
RUN wget -O httplib.h https://raw.githubusercontent.com/yhirose/cpp-httplib/v0.18.3/httplib.h
|
|
|
|
COPY uncloseai.cpp .
|
|
COPY Makefile .
|
|
|
|
# Compile the application
|
|
RUN make
|
|
|
|
# Run the examples
|
|
CMD ["./uncloseai"]
|