d2a / Dockerfile
fxlinux's picture
Update Dockerfile
f373e34 verified
raw
history blame
239 Bytes
RUN git clone https://github.com/nekohy/duck2api
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"]