Files
PolyMPR/Dockerfile
T
2026-01-06 16:54:29 -05:00

13 lines
168 B
Docker

FROM denoland/deno:alpine
WORKDIR /app
COPY . .
RUN deno cache main.ts --allow-import main.ts
RUN deno task build
EXPOSE 80
EXPOSE 443
CMD ["run", "-A", "main.ts"]