Final commit

This commit is contained in:
Giovanni 2025-08-02 13:28:10 +02:00
parent 91fffb3294
commit c35e0716af
372 changed files with 16591 additions and 1 deletions

13
backend/Dockerfile Normal file
View file

@ -0,0 +1,13 @@
FROM denoland/deno:latest
# Create working directory
WORKDIR /app
# Copy source
COPY backend/ .
# Compile the main app
RUN deno cache main.ts
# Run the app
CMD ["deno", "run", "--allow-net", "--allow-env", "main.ts"]