ddduckkk / Dockerfile
dragggl25's picture
Update Dockerfile
7a2d033 verified
raw
history blame contribute delete
169 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", "main.ts"]