Files
feeddeck/supabase/functions/_cmd/Dockerfile
dependabot[bot] 16418ab205 Bump the docker group in /supabase/functions/_cmd with 1 update (#92)
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-12-01 16:38:50 +01:00

11 lines
258 B
Docker

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