julep / Dockerfile
ERROR418's picture
Rename Dockerfile (3) to Dockerfile
dc8f843 verified
raw
history blame contribute delete
156 Bytes
FROM denoland/deno:alpine
WORKDIR /app
COPY . .
RUN deno cache main.ts
EXPOSE 7860
CMD ["run", "--allow-net", "--allow-env", "--allow-read", "main.ts"]