chore: Set up Deno project with Docker, environment configuration, and basic server

This commit is contained in:
Mauricio Siu
2025-02-23 20:13:56 -06:00
parent d525138542
commit 818be08214
8 changed files with 106 additions and 21 deletions

15
deno/Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM denoland/deno:2.0.1
WORKDIR /app
COPY deno.json .
RUN deno install
COPY . .
RUN deno cache main.ts
ARG PORT=8000
EXPOSE $PORT
CMD ["task", "start"]