uncloseai.com/public/languages/ruby/http/Dockerfile

14 lines
345 B
Docker

# PUBLIC DOMAIN - NO LICENSE, NO WARRANTY
# Copyright 2025 TimeHexOn & foxhop & russell@unturf
# https://www.permacomputer.com
# Ruby 3.3 (checked 2025-10-13: ruby:3.3-alpine is latest stable)
FROM ruby:3.3-alpine
RUN apk add --no-cache ca-certificates
WORKDIR /app
COPY uncloseai.rb .
RUN chmod +x uncloseai.rb
CMD ["ruby", "uncloseai.rb"]