Skip to main content
Home

Built and signed on GitHub Actions

The atomic design kit for Proconex.

This package works with Deno, BrowsersIt is unknown whether this package works with Cloudflare Workers, Node.js, Bun
It is unknown whether this package works with Cloudflare Workers
It is unknown whether this package works with Node.js
This package works with Deno
It is unknown whether this package works with Bun
This package works with Browsers
JSR Score
100%
Published
a year ago (0.0.40)
Package root>DOCKERFILE
FROM denoland/deno:latest
ARG VERSION
# ENV DENO_DEPLOYMENT_ID=${VERSION}
ENV PORT=3000

WORKDIR /app

COPY . .
RUN deno cache main.ts

EXPOSE 3000

CMD ["run", "-A", "main.ts"]