20 lines
361 B
Docker
20 lines
361 B
Docker
# PUBLIC DOMAIN - NO LICENSE, NO WARRANTY
|
|
# Copyright 2025 TimeHexOn & foxhop & russell@unturf
|
|
# https://www.permacomputer.com
|
|
|
|
# Use official Ruby image
|
|
FROM ruby:3.3-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy Gemfile
|
|
COPY Gemfile ./
|
|
|
|
# Install dependencies
|
|
RUN bundle install
|
|
|
|
# Copy source code
|
|
COPY uncloseai.rb ./
|
|
RUN chmod +x uncloseai.rb
|
|
|
|
CMD ["ruby", "uncloseai.rb"]
|