13 lines
284 B
Docker
13 lines
284 B
Docker
# PUBLIC DOMAIN - NO LICENSE, NO WARRANTY
|
|
# Copyright 2025 TimeHexOn & foxhop & russell@unturf
|
|
# https://www.permacomputer.com
|
|
|
|
FROM alpine:latest
|
|
|
|
RUN apk add --no-cache bash curl jq ca-certificates
|
|
|
|
WORKDIR /app
|
|
COPY uncloseai.sh .
|
|
RUN chmod +x uncloseai.sh
|
|
|
|
CMD ["./uncloseai.sh"]
|