Skip to main content
Go to Latest
File
FROM denoland/deno:1.38.3ARG VERSIONENV DENO_DEPLOYMENT_ID=${VERSION}
WORKDIR /app
COPY . .RUN deno cache --reload main.tsRUN deno task buildRUN deno run -A --unstable main.ts build
EXPOSE 8000
CMD ["run", "-A", "--unstable", "main.ts"]