camel-function 0.9.0

Function runtime service for out-of-process function execution
Documentation
1
2
3
4
5
6
7
8
FROM denoland/deno:2.1.4
WORKDIR /app
COPY main.ts camel.ts ./
EXPOSE 8080
ENV PORT=8080
ENV DENO_NO_PROMPT=1
ENV TINI_SUBREAPER=true
CMD ["deno", "run", "--allow-net=0.0.0.0", "--allow-env=PORT", "main.ts"]