Files
PolyMPR/Dockerfile
T
2025-01-21 10:04:45 +01:00

12 lines
144 B
Docker

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