File size: 320 Bytes
f373e34 40e4ce1 f373e34 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
FROM denoland/deno:latest
WORKDIR /app
COPY . .
# 清理任何现有的 node_modules 或缓存目录,以防止符号链接冲突
RUN rm -rf node_modules /app/node_modules/.deno
RUN deno cache --node-modules-dir main.ts
EXPOSE 8000
CMD ["deno", "run", "--allow-net", "--allow-env", "--node-modules-dir", "main.ts"] |