team-4/backend/Dockerfile
2025-08-02 13:28:10 +02:00

13 lines
221 B
Docker

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"]