# Setup FROM denoland/deno WORKDIR /opt/dreamland ARG PORT=3000 ARG SUPABASE_KEY ARG SUPABASE_URL EXPOSE ${PORT} # Setting up the Code COPY . . # Install required CLI Tools RUN deno install -qAn vr https://deno.land/x/velociraptor@1.5.0/cli.ts # send a request to ipv4.party because it's funny RUN vr funny # Cache Dependencies and generate Routes RUN vr cache RUN vr routes ENTRYPOINT [ "vr", "start"]