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