mirror of
https://github.com/feeddeck/feeddeck.git
synced 2026-04-28 09:57:47 -05:00
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>
11 lines
258 B
Docker
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"]
|