Files
PolyMPR/Dockerfile
T

14 lines
169 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"]