feat: initial commit

This commit is contained in:
oxypomme
2025-12-30 19:52:07 +01:00
commit 6514dc165b
10 changed files with 372 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM denoland/deno:2.6.3-alpine
# Create working directory
WORKDIR /app
# Copy source
COPY . .
# Install dependencies
RUN deno install
# Prepare flags to run script
ENTRYPOINT ["deno", "run", "-P"]