Files
PolyMPR/Dockerfile
djalim c70d4a5f11
Check Deno code / Check Deno code (pull_request) Successful in 14s
🐛 (Dockerfile): remove stray 'flag' argument from deno cache command
2026-01-13 09:07:01 +01:00

14 lines
170 B
Docker

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