16 lines
450 B
Docker
16 lines
450 B
Docker
# PUBLIC DOMAIN - NO LICENSE, NO WARRANTY
|
|
# Copyright 2025 TimeHexOn & foxhop & russell@unturf
|
|
# https://www.permacomputer.com
|
|
|
|
# Mono C# (checked 2026-01-26: mono:latest is 6.12)
|
|
FROM mono:latest
|
|
|
|
RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /app
|
|
COPY Uncloseai.cs .
|
|
|
|
# Compile with Mono's mcs compiler
|
|
RUN mcs -out:uncloseai.exe Uncloseai.cs -r:System.Net.Http.dll
|
|
|
|
CMD ["mono", "uncloseai.exe"]
|