uncloseai.com/public/languages/nim/Dockerfile

16 lines
413 B
Docker

# PUBLIC DOMAIN - NO LICENSE, NO WARRANTY
# Copyright 2025 TimeHexOn & foxhop & russell@unturf
# https://www.permacomputer.com
# Nim 2.2.2 (checked 2025-10-13: nimlang/nim:2.2.2-alpine is latest stable)
FROM nimlang/nim:2.2.2-alpine
RUN apk add --no-cache ca-certificates openssl-dev
WORKDIR /app
COPY uncloseai.nim .
# Compile the application
RUN nim c -d:ssl --threads:on uncloseai.nim
CMD ["./uncloseai"]