12 lines
276 B
Docker
12 lines
276 B
Docker
# PUBLIC DOMAIN - NO LICENSE, NO WARRANTY
|
|
# Copyright 2025 TimeHexOn & foxhop & russell@unturf
|
|
# https://www.permacomputer.com
|
|
|
|
# Bun 1.x (checked 2025-10-13: oven/bun:1 tracks latest 1.x)
|
|
FROM oven/bun:1
|
|
|
|
WORKDIR /app
|
|
|
|
COPY uncloseai.ts .
|
|
|
|
CMD ["bun", "run", "uncloseai.ts"]
|