# PUBLIC DOMAIN - NO LICENSE, NO WARRANTY
# Copyright 2025 TimeHexOn & foxhop & russell@unturf
# https://www.permacomputer.com

FROM gcc:latest

RUN apt-get update && apt-get install -y \
    gfortran-14 \
    curl \
    ca-certificates \
    && rm -rf /var/lib/apt/lists/*

WORKDIR /app
COPY uncloseai.f90 .

# Compile Fortran program
RUN gfortran-14 -o uncloseai uncloseai.f90

CMD ["./uncloseai"]
