Files
feeddeck/supabase/functions/_cmd/Dockerfile
dependabot[bot] fac622ef97 Bump the docker group in /supabase/functions/_cmd with 1 update (#114)
Bumps the docker group in /supabase/functions/_cmd with 1 update: lukechannings/deno.


Updates `lukechannings/deno` from v1.38.4 to v1.40.2

---
updated-dependencies:
- dependency-name: lukechannings/deno
  dependency-type: direct:production
  dependency-group: docker
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-01-30 21:49:44 +01:00

11 lines
258 B
Docker

# FROM denoland/deno:1.34.1
FROM lukechannings/deno:v1.40.2
WORKDIR /app
COPY . .
RUN deno cache --import-map ./import_map.json _cmd/cmd.ts
ENTRYPOINT ["/bin/deno", "run", "--allow-net", "--allow-env", "--import-map", "./import_map.json", "_cmd/cmd.ts"]