sdgkkk / Dockerfile
hongshi2025's picture
Upload 16 files
89b1816 verified
raw
history blame contribute delete
199 Bytes
FROM denoland/deno:latest
WORKDIR /app
COPY . .
RUN deno cache --node-modules-dir main.ts
EXPOSE 7860
CMD ["deno", "run", "--allow-net", "--allow-env", "--node-modules-dir", "main.ts"]