d2a / Dockerfile
fxlinux's picture
Update Dockerfile
6c8d31f verified
raw
history blame
189 Bytes
FROM denoland/deno:latest
WORKDIR /app
COPY . .
RUN deno cache --node-modules-dir main.ts
EXPOSE 8000
CMD ["deno", "run", "--allow-net", "--allow-env", "--node-modules-dir", "main.ts"]