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


---
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>
2023-10-13 18:43:16 +02:00

11 lines
258 B
Docker

# FROM denoland/deno:1.34.1
FROM lukechannings/deno:v1.37.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"]