28 lines
666 B
Docker
28 lines
666 B
Docker
# PUBLIC DOMAIN - NO LICENSE, NO WARRANTY
|
|
# Copyright 2025 TimeHexOn & foxhop & russell@unturf
|
|
# https://www.permacomputer.com
|
|
|
|
# Pin to specific Alpine version (checked 2025-10-14: alpine:3.20 is latest stable)
|
|
FROM alpine:latest
|
|
|
|
# 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"]
|